layer layer.open传参数到子页面


layer.open如何传主要参数到子页面呢?不清楚的小伙伴来看看小编今日的分享吧!
父页面传参给子页面(iframe页面):
编码:
var index = layer.open({
title: '编写',
type: 1,
shade: 0.2,
maxmin: true,
shadeClose: true,
area: [openWH[0]'px', openWH[1]'px'],
offset: [openWH[2]'px', openWH[3]'px'],
【layer layer.open传参数到子页面】content: content, //这儿是iframe页面的路由器
success: function(layero, index){
var body=layer.getchildFrame('body',index);
var fileId = body.contents().find("#fileId");
$(fileId.selector).val(data.id);
}
});
子页面
<input type="hidden" name="id" id="fileId" placeholder="文档id" value=https://www.baikehuo.com/baike/""
clAss="layui-input">
以上便是小编今日的共享了 , 期待可以作用到大伙儿 。