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

怎么调用链接,大神?


<!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 abc=prompt("确认打开这个网址吗?", "http://www.imooc.com");
           if(abc!=null)
           {
               alert(window.open('url', '_blank','width=400,height=500,menubar=no,toolbar=no'))
           }
           else
           {
               abc.close()
           }
   </script>
</head>
<body>
<input type="button" value="新窗口打开网站" onClick="openWindow()" />
</body>
</html>

点button没反应

正在回答

4 回答

<!DOCTYPE html>

<html>

 <head>

  <title> new document </title>  

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

  <script type="text/javascript">  

    

  function openWindow(){ 

      confirm("是否打开网站");// 新窗口打开时弹出确认框,是否打开

var abc=prompt("输入要打开的网址","http://");

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

{}else{

    window.open(abc,'_block','width=400px,height=500px,menubar=no,toolbar=no')

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

   

  }

  </script> 

 </head> 

 <body> 

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

 </body>

</html>

这个是我的作业你可以参考一下

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

金潭村的小菜鸟 提问者

非常感谢!function后面的大括号错了
2017-09-09 回复 有任何疑惑可以回复我~
#2

web前端小白进阶

噢这种问题都是很难发现的小毛病,以后一定要注意必须在英文状态下输入
2017-09-11 回复 有任何疑惑可以回复我~

<!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 abc=prompt("确认打开这个网址吗?");
           if(abc!=null)
           {
               window.open('http://www.imooc.com','_blank','width=400,height=500,menubar=no,toolbar=no');

           }
           else
           {
               abc.close()
           }
   </script>
</head>
<body>
<input type="button" value="新窗口打开网站" onClick="openWindow()" />
</body>
</html>

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

web前端小白进阶

你这个不管输入什么网站都只能打开慕课网
2017-09-07 回复 有任何疑惑可以回复我~

url换成abc

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

  alert(window.open('url', '_blank','width=400,height=500,menubar=no,toolbar=no'))去掉alert试一试


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

举报

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

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

进入课程

怎么调用链接,大神?

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