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 badges
Add a ment  | 

1 Answer 1

Reset to default 10

Change 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