问答详情
源自:2-7 编程练习

为何弹出确认框点击确认后没有打开慕课网页啊?

 function openWindow()
    {
          var mymess=confirm("确认打开慕课网?");
          if(mymess==ture)
          {
        window.open('http://imooc.com','_blank',width=400,height=500,menubar=no,toolbar=no');
          }
    }
    
  </script> 
 </head> 
 <body> 
	  <input type="button" value="新窗口打开网站" onclick="openWindow()" /> 
 </body>


提问者:寒风入境 2016-01-22 15:26

个回答

  • 伊望岁月
    2016-01-22 15:34:36

    ture --> true

    ,width=400,height=500,menubar=no,toolbar=no' 

    -->

    ,'width=400,height=500,menubar=no,toolbar=no'