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

做对了嘛?

 

<html>
 <head>
  <title> new document </title> 
  <meta http-equiv="Content-Type" content="text/html; charset=gbk"/>  
  <script type="text/javascript"> 
  function openWindow(){
      var op=confirm("是否打开新窗口");
    if(op == true){
        document.write("http://www.imooc.com/");
        }else{
            document.write(bu'shiha不是);
        }
    // 新窗口打开时弹出确认框,是否打开

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

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

    window.open(' http://www.imooc.com/ width=400px,height=500px,menubar=no,toolbar=no')
    }
   
  </script>
 </head>
 <body>
   <input type="button" value="新窗口打开网站" onclick="openWindow()" />
 </body>
</html>

制作新按钮,“新窗口打开网站,点击打开新窗口

1新窗口打开弹出确认框,是否打开ia

2”

正在回答

4 回答

打开窗口的函数不是document.write(),应该是window.open()。你的代码window.open()的参数写得也不对。下面是正确实现的代码,你参考下

<!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 myWindow = confirm("是否打开窗口");
    if(myWindow==true)
    {
        // 通过输入对话框,确定打开的网址,默认为 http://www.imooc.com/
        var  mySite = prompt("请输入打开的网址","http://www.imooc.com");
        if(mySite!=null)
        {
            //打开的窗口要求,宽400像素,高500像素,无菜单栏、无工具栏。
            window.open(mySite,"_blank","width=400,height=500,menubar=no,toolbar=no");
        }
      
    }
}    
    
  </script> 
 </head> 
 <body> 
 <input type="button" value="新窗口打开网站" onclick="openWindow()" /> 
 </body>
</html>


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

做对了

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

对不对,你可以在DREAMWAVER里试着打开一下?

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

<html>
 <head>
  <title> new document </title> 
  <meta http-equiv="Content-Type" content="text/html; charset=gbk"/>  
  <script type="text/javascript"> 
  function openWindow()

{
      var op=confirm("是否打开新窗口"); // 新窗口打开时弹出确认框,是否打开

    if(op == true)

{
       var Button=prompt('新窗口打开网站',' http://www.imooc.com','width=400px','height=500px','menubar=no','toolbar=no'); // 通过输入对话框,确定打开的网址,默认为 http://www.imooc.com/

       if (Button!=null)

        {

             window.open(Button)

       }

else

{

         alert('关闭窗口')

}

else

{
            document.write('');

  }

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

举报

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

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

进入课程

做对了嘛?

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