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);