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

第12行的mes==""为什么替换成mes==null运行结果就不对了

第12行的mes==""为什么替换成mes==null运行结果就不对了http://img1.sycdn.imooc.com//5e8d196100011adb07640557.jpg


正在回答

2 回答

因为你在输入框什么都不输入的时候发送的字符串是“”而不是null,null代表不存在,但实际上你在输入框里是有东西的,“”!= null

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

<!DOCTYPE html>

<html>

 <head>

  <title> new document </title>  

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

  <script type="text/javascript">  

    function openWindow()

    {

        var open=confirm("是否打开网页?");

        if(open==true){

            var mes=prompt("请输入要访问的网址:");

            if(mes=="")

            {

                  window.open('http://www.imooc.com/','_blank','width=400,height=500,menubar=no,toolbar=no');

            }

           else

           {

               window.open('https://www.baidu.com/','_blank','width=400,height=500,menubar=no,toolbar=no');

           }

        }

    }

  </script> 

 </head> 

 <body> 

  <input type="button" value="新窗口打开网站" onclick="openWindow()" /> 

 </body>

</html>


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

举报

0/150
提交
取消

第12行的mes==""为什么替换成mes==null运行结果就不对了

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