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

这样OK不?

<!DOCTYPE html>

<html>

 <head>

  <title> new document </title>  

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

  <script type="text/javascript"> 

  function openWindow() {

      if (confirm("打开新窗口")) {

          if (var newpage=prompt("打开新窗口","http://www.imooc.com/")){

              window.open(newpage,'_blank',"width=400px,height=500px,menubar=no,toolbar=no,scrollbars=no,status=no");

          }

          else{

              alert("你选择了取消");

          }

      }

      else {

          alert("你选择了取消");

      }

  }

   

  </script> 

 </head> 

 <body> 

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

 </body>

</html>


正在回答

4 回答

ok吧

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

function openWindow(){

    var newwindow=confirm("是否打开慕课网?")

    if(newwindow==true)

    {

        document.write('我点击了确定');

        window.open('http://www.imooc.com','_blank','width=500','menubar=no','toolbar=no');

    }

    else

    {

        document.write('我点击了取消');

    }

  }


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

function openWindow(){

    var newwindow=confirm("是否打开慕课网?")

    if(newwindow==true)

    {

        document.write('我点击了确定');

        window.open('http://www.imooc.com','width=400,height=500,menubar=no,toolbar=no');

    }

    else

    {

        document.write('我点击了取消');

    }

  }


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

<!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 xin=confirm("你确定要打开新窗口吗?");  //首先设置变量,用confirm确认信息框

if ( xin == true) {  //if判断,当选择确定,返回true的时候,下面用window.open打开页面

window.open('http://www.tingchefm.com/','_blank','width=400,height=500,menubar=no,toolbar=no');

} else{

 //if判断,当选择取消,返回false的时候,不进行任何操作

}

    }

  </script> 

 </head> 

 <body> 

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

 </body>

</html>


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

举报

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

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

进入课程

这样OK不?

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