问答详情
源自:2-5 JavaScript-打开新窗口(window.open)

为什么使用-self 这个参数,窗口没有反应呢?

<!DOCTYPE HTML>

<html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

<title>window.open</title>

<script type="text/javascript">

  function Wopen(){

      var mymessage=confirm("点击我,打开新窗口!");

      if (mymessage=true)

      {

        window.open('http://www.imooc.com','_self','width=400,height=600,top=200,left=200,menubar=yes,toolbar=yes, status=yes,scrollbars=yes'); 

      }

      else

      {

          alert(" 请重新来一遍~");

      }


  } 

</script>

</head>

<body>

    <input name="button" type="button" onClick="Wopen()" value="点击我,打开新窗口!">

</body>

</html>


提问者:别比比 2019-01-16 20:37

个回答

  • 努力的xian鱼
    2019-05-14 22:44:24

    可能是你的浏览器拦截了脚本

  • 蜗牛求学
    2019-01-17 00:18:07

    _blank:在新窗口显示目标网页
    _self:在当前窗口显示目标网页

    _top:框架网页中在上部窗口中显示目标网页