在layui.use中写
layui.setht=function(id){
layer.open({
type: 1,
title: "设置班主任信息",
content: $('#setht') //这里content是一个DOM,注意:最好该元素要存放在body最外层,否则可能被其它的相对元素所影响
});
}
调用方法
onClick="layui.setht(<?php echo($id);?>)"
在layui.use中写
layui.setht=function(id){
layer.open({
type: 1,
title: "设置班主任信息",
content: $('#setht') //这里content是一个DOM,注意:最好该元素要存放在body最外层,否则可能被其它的相对元素所影响
});
}
调用方法
onClick="layui.setht(<?php echo($id);?>)"