怎么能让prompt仅仅输入该网址时才跳转网页,输入别的都无效呢

来源:2-4 JavaScript-提问(prompt 消息对话框)

weixin_慕盖茨5207985

2019-02-11 12:31

<!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 a=confirm("是否打开?");

if(a==true)

{var b=prompt("确定打开的网址","http://www.imooc.com/");if (b!=null){window.open('http://www.imooc.com/','_blank',width=400,height=500);}else{alert("bye");}}

else

{document.write("再见");}

}

</script> 

 </head> 

 <body> 

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

 </body>

</html>

但怎么能让prompt仅仅输入该网址时才跳转网页,输入别的都无效呢


写回答 关注

3回答

  • 慕丝2791062
    2019-02-11 12:57:40
    已采纳

    加一个判断条件即可,在你的代码基础上增减了一些东西:

    <!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 a=confirm("是否打开?");


    if(a==true)

    {

        var b=prompt("确定打开的网址");//可省略慕课网网址

        if (b != 'http://www.imooc.com/')

        document.write("希望你输入慕课网网址而不是其他")

        else

        {

            window.open(a,'_blank',width=400,height=500);

        }

        

    }

    else

    {

        document.write("再见,你不希望打开新网址");

        

    }

    }


    </script> 


     </head> 


     <body> 


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


     </body>


    </html>


    weixin...

    大神请问我这么写对吗 我把b!=改成了b==,好像就行了,是不是不符合规则 if(b=="http://www.imooc.com/"){window.open('http://www.imooc.com/','_blank',width=400,height=500);}else{alert("bye");}

    2019-02-11 13:03:37

    共 1 条回复 >

  • 青山原不老为雪白头
    2019-06-30 23:54:17

    你最后是不是少打了一个else语句

  • 慕丝2791062
    2019-02-11 15:02:27

    如果你写b=="http://www.imooc.com/"的话,那就说明你输入的是慕课网的网址,而你想要的也是成功打开手动输入的慕课网网址,这就对上了呀。反之,当b!=时,你唯有输入除了慕课网网址外的其他东西,后面的这条语句:window.open('http://www.imooc.com/','_blank',width=400,height=500);}else{alert("bye");才会被执行。

    weixin...

    谢谢!

    2019-02-11 16:12:08

    共 1 条回复 >

JavaScript入门篇

JavaScript做为一名Web工程师的必备技术,本教程让您快速入门

739817 学习 · 9566 问题

查看课程

相似问题