为了账号安全,请及时绑定邮箱和手机立即绑定

我这样写代码是否有问题?

<!DOCTYPE html>

<html>

 <head>

  <title> new document </title>  

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

  <script type="text/javascript">  

    

    // 新窗口打开时弹出确认框,是否打开


    // 通过输入对话框,确定打开的网址,默认为 http://www.imooc.com/


    //打开的窗口要求,宽400像素,高500像素,无菜单栏、无工具栏。

    function openwindow(){

        var turn_on=confirm("是否打开新窗口?");

        if(turn_on==true)

        var new_wbesite=prompt("输入要打开的新网站地址",'http://www.imooc.com');

        window.open('new_website','width=400px,height=500px,menubar=no,toolbar=no');}

        

    else{}

  </script> 

 </head> 

 <body> 

 <input type="button" onclick="openWindow()" value="点击对话框,进入新网站"/> 

 </body>

</html>


正在回答

4 回答

if...else...语句书写时要加入大括号{},即if(){}else{},确保执行的内容是在满足条件下执行的,你的代码中“

 function openwindow(){

        var turn_on=confirm("是否打开新窗口?");

        if(turn_on==true)

        var new_wbesite=prompt("输入要打开的新网站地址",'http://www.imooc.com');

        window.open('new_website','width=400px,height=500px,menubar=no,toolbar=no');}

        

    else{}


if的位置少了一个左大括号“{”,函数openwindow()确实结束用的右大括号“}”,并且

window.open('new_website','width=400px,height=500px,menubar=no,toolbar=no');其中new_website应该没有单引号,即window.open(new_website,'width=400px,height=500px,menubar=no,toolbar=no');


0 回复 有任何疑惑可以回复我~
#1

web_東 提问者

非常感谢!
2016-10-31 回复 有任何疑惑可以回复我~

Window,开头字母是大写

0 回复 有任何疑惑可以回复我~

谢谢,我再仔细研究研究。

0 回复 有任何疑惑可以回复我~


 window.open(new_website,'width=400px,height=500px,menubar=no,toolbar=no');

这个new_website应该不用加单引号

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

我这样写代码是否有问题?

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信