1.微擎的web文件夹下的文件只要引用了如下标签就使用了Bootstrap的前台框架和Jquery.js
{template 'common/header'}/*div+css代码*/{template 'common/footer'}
2.setting页面(可自己新建一个都行)假如有select控件,如何在site.php文件中获取到select选中的值:
html页面代码:
{template 'common/header'}{template 'common/footer'}
site.php页面代码如下:
public function doWebSetting() { //这个操作被定义用来呈现 管理中心导航菜单 global $_W,$_GPC; $id=$_GPC['groupid']; if(checksubmit('submit')) { message($id); } include $this->template('web/setting'); }
3.调用微擎自带的提示框信息,效果图如下:
4.后台修改数据保存,让起自动跳转其他页面的使用方法,比如在site.php文件中
效果图:
代码如下:
message("修改成功",$this->createWebUrl('Businesslist'),success);
那么他就会跳转到这个方法:
public function doWebBusinesslist() { include $this->template('web/businesslist'); }