大家好,又见面了,我是你们的朋友全栈君。
场景:点击页面上一个超链接,弹出模态窗口。
html伪代码如下:
<a href=”javascript:showModalDialog();”></a>
js代码:
function showModalDialog(){
var modalDialogStyle=”dialogWidth=1000px;dialogHeight=600px;scroll:no;status:no”;
return window.showModalDialog(“111.html”,window,modalDialogStyle);
}
然后IE8就会报类似文章标题的错误。
原因就是:命名冲突。
发布者:全栈程序员栈长,转载请注明出处:https://javaforall.cn/159618.html原文链接:https://javaforall.cn