代码之家  ›  专栏  ›  技术社区  ›  F.P

MSIE window.open未打开

  •  0
  • F.P  · 技术社区  · 14 年前

    <a href="javascript:tellafriend('tellafriend.php?id=<?php echo $obj_id; ?>');">Send page</a>
    

    这个函数在JS中:

      function tellafriend(url) {
        popup = window.open(url, "Send page", "width=500,height=600,scrollbars=yes,resizable=yes");
        popup.focus();
      }
    

    告诉我错误就在那条线上 popup = window.open...

    有什么办法解决吗?

    1 回复  |  直到 14 年前
        1
  •  1
  •   Andrew Carmichael    14 年前

    我不能告诉你为什么会发生这种情况,但IE不允许在第二个参数中有空格 window.open

    popup = window.open(url, "Sendpage", "width=500,height=600,scrollbars=yes,resizable=yes");
    

    窗户会弹出。