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

大神们请进,有问题要问

确定后,如果输入不为空就在新窗口打开,但是若在prompt中输入为空,怎么能让它提示’请输入正确网址‘,并循环上去从新判定它不为空,顺利打开,   用for 不知道 判断条件和变量更新怎么写,不用循环语句,那要怎么写

提问者:李半斤 2016-03-11 17:36

个回答

  • 大树置林
    2016-03-11 20:33:18

           var url=prompt("通过输入对话框,确定打开的网址");

            if(url!=null)

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

            {window.open(url,"_blank",'width=400px,height=500px,menubar=no,toolbar=no');    

            }

            else{

                alert("网址不为空");

            }


  • 烟雨微霞
    2016-03-11 20:12:14

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>无标题文档</title>
    <script type="text/javascript">
    function rec(){
       var myweb=prompt("请输入网址");
       if(myweb!=null){
        alert(myweb);
       }
      
       else
       {window.open('http://www.imooc.com','_blank','width=400,height=500px,menubar=no,toolbar=no');
       }
    }
    </head>


    <body>
    <input type="button" value="点击我" onClick="rec()"/>
    </body>
    </html>

    你可以试下这个代码

  • moonn
    2016-03-11 19:53:54

    你要是知道不输入内容的返回值的啥 麻烦告诉我一声