window.open 在 IE8 中不起作用,但在 FF3.6 中正常工作
我需要在单击某个链接时打开一个新窗口我的代码是
var url = data['featureHelpUrl'];
var win = window.open(url, "_blank",
"height=750,width=600,scrollbars=yes");
win.focus();
此代码在 FF 中打开窗口但不在 IE 中打开
i have requirement to open a new window on click of some link my code is
var url = data['featureHelpUrl'];
var win = window.open(url, "_blank",
"height=750,width=600,scrollbars=yes");
win.focus();
this code is opening window in FF but not opening in IE
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
弹出窗口拦截器!弹出窗口拦截器在这两个浏览器中的工作方式与我记忆中的不同——如果您由于 onclick 事件而触发此代码,则应该可以工作,否则您将受到弹出窗口拦截的影响。
popup blocker! the popup blocker works differently in the 2 browsers from what i remember -- if you trigger this code as a result of an onclick event should work though, otherwise you will be subject to popup blocking.