当前位置: 首页 > 工具软件 > artDialog > 使用案例 >

artDialog

刘野
2023-12-01

artDialog的API网上很多,就不多说了,有时弹出框要调用父页面的方法,其实那个不是父页面,用parent没用,要通过

var tab = top.document.getElementById("orderView").contentWindow;
			tab.listGrid('${bigOrderNo}');

orderView
是弹出的ID,
art.dialog.open(url, {
        id: _id,
        title: _title,
        width: _width,
        height: _height,
        left: left + '%',
        top: top + '%',
        background: '#000000',
        opacity: 0.1,
        lock: true,
        resize: false,
        close: function () { }
    }, false);

相关阅读

相关文章

相关问答