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

为什么点了没反应

<!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 address = prompt("请您输入想打开的网站:","http://www.imooc.com/");

          if(address!=null)

             {window.open('address','_blank','menubar=no,toolbar=no,height=500,weight=400');

             }

             else{

                 alert("再见!");

             }

         }

         else{

              alert("保持在当前页面");

         }

     }

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


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


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

    

    

  </script> 

 </head> 

 <body> 

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

 </body>

</html>


正在回答

3 回答

<!DOCTYPE HTML>
 <html>
  <head>
   <script>
    function abb(){
    var aab=confirm("是否打开网址?")
    if(aab=true){
    var acc=prompt("请输入网址","http://www.baidu.com")
     if(acc!=null){
     window.open('http://www.baidu.con','_blank','width=500,height=200,top=100,left=500','toolbar=no','menubar=no')
     }
     else{
     alert("拜拜!")
     }
    }
    else{
    document.write("拜拜哦!")
    }
    }
    function add(){
    abb.close();
    }
   </script>
  </head>
  <body>
   <input type="button" value="点击进入网址" onclick="abb()">
   <input type="button" value="关闭网址" onclick="add()">
  </body>
  </html>

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

慕前端0798377

==true变成=true
2018-07-26 回复 有任何疑惑可以回复我~

我知道了,你的最后一个else的括号用成了中文状态的了

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

emem不知道怎么改,但是我的是这样写的,

<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <script type="text/javascript">
            // 新窗口打开时弹出确认框,是否打开
            function open1(){
                var a1=confirm("是否真的打开新窗口?");
                if (a1==true) {
                    window.open();
                } else{
                    close();
                }
            }
            // 通过输入对话框,确定打开的网址,默认为 http://www.imooc.com/
            function open2(){
                var a2=prompt("是否真的打开?");
                if (a2==0) {
                    window.open('http://www.imooc.com/');
                }
                
            }
            
            //打开的窗口要求,宽400像素,高500像素,无菜单栏、无工具栏。
            function open3 () {
                window.open('http://www.imooc.com','_blank','height=500,width=400,menubar=0,toolbar=0');
            }
            
        </script>
        <title>我的练习</title>
    </head>
    <body>
        <input name="button1"  type="button" onclick="open1()" value="是否打开新窗口!"/>
    </br>
        <input name="button2"  type="button" onclick="open2()" value="打开新网址"/>
    </br>
        <input name="button3"  type="button" onclick="open3()" value="打开一个宽400像素,高500像素,无菜单栏、无工具栏的窗口"/>
    </br>
    </body>
</html>


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

举报

0/150
提交
取消
JavaScript入门篇
  • 参与学习       739819    人
  • 解答问题       9566    个

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

进入课程

为什么点了没反应

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