谷歌浏览器不支持showModalDialog模态对话框的解决方法_javascript技巧
程序员文章站
2022-03-29 18:53:25
...
忽然发现Chrome浏览器版本 37.0.2062.103 m 不支持showModalDialog模态对话框和无法返回returnValue
window.open("xsp/exesp?todo=13","","height=500,width=280,status=yes,toolbar=no,menubar=no,location=no");
window.close();
window.opener.document.getElementById("classid").value=treeid;
window.opener.document.getElementById("classname").value=treename;
项目原先用到的都不能正常执行
找了个折中方案利用window.open代替showModalDialog利用 window.opener.document来操作父页面的元素
复制代码 代码如下:
window.open("xsp/exesp?todo=13","","height=500,width=280,status=yes,toolbar=no,menubar=no,location=no");
复制代码 代码如下:
window.close();
window.opener.document.getElementById("classid").value=treeid;
window.opener.document.getElementById("classname").value=treename;
上一篇: php实现单例模式
推荐阅读
-
showModalDialog在谷歌浏览器下会返回Null的解决方法_javascript技巧
-
showModalDialog在谷歌浏览器下会返回Null的解决方法_javascript技巧
-
谷歌浏览器不支持showModalDialog模态对话框的解决方法_javascript技巧
-
IE浏览器不支持getElementsByClassName的解决方法_javascript技巧
-
IE浏览器不支持getElementsByClassName的解决方法_javascript技巧
-
showModalDialog模态对话框的使用详解以及浏览器兼容_javascript技巧
-
showModalDialog模态对话框的使用详解以及浏览器兼容_javascript技巧
-
谷歌浏览器不支持showModalDialog模态对话框的解决方法_javascript技巧
-
javascript中IE浏览器不支持NEW DATE()带参数的解决方法_javascript技巧
-
firefox浏览器不支持innerText的解决方法_javascript技巧