谷歌浏览器不支持showModalDialog模态对话框的解决方法



谷歌浏览器不支持showModalDialog模态对话框的解决方法。showModalDialog,在测试中,IE,Firefox中正常运行,但是在google中,点击后没什么反应,在网上看了一下,谷歌浏览器不支持showModalDialog模态对话框和无法返回returnValue,得到了一个解决办法

代码如下:

利用window.open代替showModalDialog利用 window.opener.document来操作父页面的元素

[javascript] view plaincopyprint?

  1. window.open(“xsp/exesp?todo=13″,”",”height=500,width=280,status=yes,toolbar=no,menubar=no,location=no”);
  2. window.close();
  3. window.opener.document.getElementById(“classid”).value=treeid;
  4. window.opener.document.getElementById(“classname”).value=treename;
[javascript] view plaincopyprint?

问题解决^_^