你如何让 window.open 在 Internet Explorer 7 中工作?

How do you get window.open to work in internet explorer 7?(你如何让 window.open 在 Internet Explorer 7 中工作?)
本文介绍了你如何让 window.open 在 Internet Explorer 7 中工作?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在过去的 3 个小时里,我一直在尝试让我的 svg 网站打开弹出窗口,但我得到的只是 Internet Explorer 中的权限被拒绝"错误.我已经尝试了所有可以在谷歌上找到的东西,但没有任何效果.我什至已经到了只调用没有参数的 window.open() 空白的地步,仍然得到一个权限被拒绝的错误.目前在 Internet Explorer 中打开弹出式窗口的公认标准是什么...有效?

I've been trying for the past 3 hours to get my svg web site to open popups, and all I ever get is "Permission Denied" errors in internet explorer. I've tried everything I could find on google, and nothing works. I've even gone to the point of just calling window.open() blank with no parameters, and still get a permission denied error. What is the currently accepted standard for opening popups in internet explorer... that works?

推荐答案

这是在 IE6 中所做的安全更改的一部分.现在您只能从用户发起的事件中调用window.open".例如,您的代码将在元素的 onclick 事件中运行."window.open" MSDN 页面 说这个:

This is part of the security changes made in IE6. Now you can only call "window.open" from within a user-initiated event. For example, your code would work inside an element's onclick event. The "window.open" MSDN page says this:

"此方法必须使用用户启动的操作,例如单击链接或跳到一个链接并按下回车键,打开一个弹出窗口.弹出窗口Internet Explorer 6 中的阻止程序功能阻止没有打开的窗口由用户发起."

"This method must use a user-initiated action, such as clicking on a link or tabbing to a link and pressing enter, to open a pop-up window. The Pop-up Blocker feature in Internet Explorer 6 blocks windows that are opened without being initiated by the user."

这篇关于你如何让 window.open 在 Internet Explorer 7 中工作?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Update another component when Formik form changes(当Formik表单更改时更新另一个组件)
Formik validation isSubmitting / isValidating not getting set to true(Formik验证正在提交/isValiating未设置为True)
React Validation Max Range Using Formik(使用Formik的Reaction验证最大范围)
Validation using Yup to check string or number length(使用YUP检查字符串或数字长度的验证)
Updating initialValues prop on Formik Form does not update input value(更新Formik表单上的初始值属性不会更新输入值)
password validation with yup and formik(使用YUP和Formick进行密码验证)