網站首頁 學習教育 IT科技 金融知識 旅遊規劃 生活小知識 家鄉美食 養生小知識 健身運動 美容百科 遊戲知識 綜合知識
當前位置:趣知科普吧 > IT科技 > 

open傳參數到子頁面|layer

欄目: IT科技 / 發佈於: / 人氣:1.23W

頁面傳參給子頁面(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.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);

}

});

layer.open傳參數到子頁面 第2張

子頁面

<input type="hidden" name="id" id="fileId"  placeholder="檔案id" value=""

 class="layui-input">