Jscript open.window

时间:2013-03-10 09:11:27

标签: javascript

function OpenPopup()
{
    window.open('myUpload.aspx', '', 'width=200,height=100');
}

当我运行上述操作时,我收到Microsoft JScript运行时错误:Permission denied 码。 我正在使用IE9和VisualStudio 2010。

2 个答案:

答案 0 :(得分:0)

尝试使用它:

function OpenPopup(formname)
{
    window.open('http://localhost/myUpload.aspx', '', 'width=200,height=100');
}

将第一个参数从window.open更改为您的网址

答案 1 :(得分:0)

可能你已经启用了弹出窗口拦截器。