author:咔咔
wechat:fangkangfk
案例:
底层是父级页面,上边是子页面,子页面需要将选择的ID传递给父级页面
首先需要在父级页面写open打开子页面
content是子页面地址
var type_id; layui.use(['laypage', 'layer','form'], function() { var laypage = layui.laypage , layer = layui.layer, form = layui.form; form.on('select(type_mid)', function(data){ type_id = data.value; }) }); function show_layer(){ layer.open({ type: 2, area: [1000+'px', 1000+'px'], fix: false, //不固定 maxmin: true, shadeClose: true, shade:0.4, title: '扩展分类', content: 'type?type_id='+type_id, //url 为子布局的url路径 success:function (layero,index) { console.log('我是咔咔') } }); }