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

为什么点击按钮没反应呢?求大神指导

<!DOCTYPE html>

<html>

 <head>

  <title> new document </title>  

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

  <script type="text/javascript">  

    

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

    var URL = "http://www.imooc.com/"

    function openWinow(){

    var aa = confirm("是否要跳转到其他页面")

    if(aa==true){

        prompt("请输入需要打开的网址",URL);

        window.open(

           'URL' '_blank','height=500,width=400,menubar=no,toolbar=no')

    }

}

    

    

    

    

  </script> 

 </head> 

 <body> 

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

 </body>

</html>


正在回答

2 回答

<!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 abs=confirm("是否打开窗口");
if(abs)
    window.open(' http://www.imooc.com/','_blank','width=400px,top=500px,left=0,menubar=no,toolbar=no')

    //打开的窗口要求,宽400像素,高500像素,无菜单栏、无工具栏。
   }
    
  </script>
 </head>
 <body>
      <input type="button" value="新窗口打开网站" onclick="openWindow()" />
 </body>
</html>

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

<!DOCTYPE html>
<html>
 <head>
  <title> new document </title>  
  <meta http-equiv="Content-Type" content="text/html; charset=gbk"/>   
  <script type="text/javascript">  
   
    // 新窗口打开时弹出确认框,是否打开
 var URL = "http://www.imooc.com/"

    function openWindow(){
    var aa = confirm("是否要跳转到其他页面")
    if(aa==true){
        prompt("请输入需要打开的网址",URL);
        window.open(
          URL ,'_blank','height=500,width=400,menubar=no,toolbar=no')

    }



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

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

    //打开的窗口要求,宽400像素,高500像素,无菜单栏、无工具栏。
    
    
  </script>
 </head>
 <body>
      <input type="button" value="新窗口打开网站" onclick="openWindow()" />
 </body>
</html>

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

qq_小心你背后的那只手_0

你的错误为window少个d,url中的:为中文字符,window.open中url不加引号,因为是变量,url和_blank之间少逗号
2018-06-19 回复 有任何疑惑可以回复我~
#2

chx_1998 提问者 回复 qq_小心你背后的那只手_0

好的谢谢
2018-06-23 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

为什么点击按钮没反应呢?求大神指导

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