设置一个按钮执行脚本
function orderdetail() {
window.showModalDialog("Remarks.aspx", null, "dialogWidth=700px;dialogHeight=520px;scroll=yes;status=0");
}
在IE、360能正常打开模态窗口,但在谷歌会报
Uncaught TypeError: undefined is not a function
的错误。该这么解决这个问题?
搜一下undefined
http://blog.163.com/zhi_qingfang@126/blog/static/11747756320132218144825/
chrome不支持showModelDialog
明显是chrome不支持showModelDialog这个函数,使用openModelDialog试下。
window.openModelDialog?
@陈勇胜: 对。我给的连接里有解释说明
可以试试artdialog