function OpenPopup()
{
window.open('myUpload.aspx', '', 'width=200,height=100');
}
当我运行上述操作时,我收到Microsoft JScript运行时错误:Permission denied
码。
我正在使用IE9和VisualStudio 2010。
答案 0 :(得分:0)
尝试使用它:
function OpenPopup(formname)
{
window.open('http://localhost/myUpload.aspx', '', 'width=200,height=100');
}
将第一个参数从window.open
更改为您的网址
答案 1 :(得分:0)
可能你已经启用了弹出窗口拦截器。