admin管理员组文章数量:1346192
I know that this problem is in many question but I haven't found a solution to my problem.
This is the original code top open a popup:
<script type="text/javascript">
window.open("link.php", "_blank");
</script>
The code works fine in all browser except Safari. To solve this I have create this code:
<script type="text/javascript">
var open = window.open("link.php", "_blank");
if (open == null || typeof(open)=='undefined')
alert("Turn off your pop-up blocker!");
</script>
Now this code in firefox return me this error:
TypeError: window.open is not a function
var open = window.open("link.php", "_blank");
How can I solve this problem?
I know that this problem is in many question but I haven't found a solution to my problem.
This is the original code top open a popup:
<script type="text/javascript">
window.open("link.php", "_blank");
</script>
The code works fine in all browser except Safari. To solve this I have create this code:
<script type="text/javascript">
var open = window.open("link.php", "_blank");
if (open == null || typeof(open)=='undefined')
alert("Turn off your pop-up blocker!");
</script>
Now this code in firefox return me this error:
TypeError: window.open is not a function
var open = window.open("link.php", "_blank");
How can I solve this problem?
Share Improve this question asked Aug 1, 2013 at 9:00 Alessandro MinoccheriAlessandro Minoccheri 36k22 gold badges127 silver badges176 bronze badges1 Answer
Reset to default 10Change your code a little bit like this
<script type="text/javascript">
var _open = window.open("link.php", "_blank");
if (_open == null || typeof(_open)=='undefined')
alert("Turn off your pop-up blocker!");
else
</script>
This should work now. The problem was that you're overwriting the window.open function using the global variable open
本文标签: javascriptFirefox windowopen not a functionStack Overflow
版权声明:本文标题:javascript - Firefox window.open not a function - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743823970a2545296.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论