window.openDialog不起作用

时间:2016-02-03 17:32:36

标签: javascript

我正在使用的应用程序使用了折旧的windows.showModalDialog,因此我将其替换为窗口,.open工作正常,但有一个问题 - 它不是模态的。我发现可以使用window.open对话框,但用window.openDialog替换window.open会破坏我的链接。

我有

ret = window.open(target, "", "scrollbars=no,location=no,statusbar=no,menubar=no,resizable=no,width=500,height=300");

哪个有效,所以我试过了:

ret = window.openDialog(target, "", "scrollbars=no,location=no,statusbar=no,menubar=no,resizable=no,width=500,height=300");

没有。有人可以帮我解决这个问题吗?

1 个答案:

答案 0 :(得分:0)

当你在Window.openDialog中传递参数时,额外的参数应该在WindowFeatures参数之后 Window.openDialog(“any url”,“name”,“”,“feature”,arg1,arg2);