码迷,mamicode.com
首页 > 其他好文 > 详细

layui 父页面向子页面传参

时间:2021-02-03 10:31:51      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:func   ESS   UNC   selected   open   alert   select   layer   kde   

父窗体js

$(‘.mytable‘).on(‘click‘, ‘.editRow‘, function () {
    var table = $(‘#table_id_example‘).DataTable();
    var rowData = table.rows({selected: true}).data()[0];
    if (rowData) {
        layer.open({
            title: this.text,
            type: 2,
            skin: ‘layui-layer-rim‘, //加上边框
            area: [window.screen.width / 2 + ‘px‘, window.screen.height / 2 + ‘px‘], //宽高
            maxmin: true, //开启最大化最小化按钮
            content: "taskDetail.html",
            success: function (layero, index) {
                // 获取子页面的iframe
                var iframe = window[‘layui-layer-iframe‘ + index];
                // 向子页面的全局函数child传参
                iframe.child(rowData);
            }
        })
    } else {
        alert("先选择行")
    }
})

子窗体js

function child(d) {
    alert(d);
    // todo 你的业务代码
    // 可以把传递过来的参数存在layui.cache中, 方便其他方法调用

}

layui 父页面向子页面传参

标签:func   ESS   UNC   selected   open   alert   select   layer   kde   

原文地址:https://www.cnblogs.com/liuyishi/p/14360542.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!