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

代码出来了,大家可以引荐

<input name="button" type="button" onclick="openy()" value="点击我"  /> <script>      function openy(){		var his = confirm("是否进入");		if(his==true){			var bottyr = prompt("请输入正确的网址:"); 			if(bottyr){			window.open(bottyr,'_blank');			}else{				window.open('https://www.imooc.com/code/412','_blank');			}		}else{			document.write("谢谢光临");		}        }      </script>	

随便输入正确网址,然后就可以直接跳过去了。

按题目的话自己改成默认网址,然后条件改成

(bottyr == "")


正在回答

3 回答

<!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 mymessage= confirm("确认打开新网页吗");

      function myopen()

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

    }

       if (mymessage==true)

       {

          myopen();

       }

      

  } 

</script>

 </head> 


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

你这写代码的风格有点emmmm,就有点看不懂你在写什么?

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

<!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 message = confirm("是否打开网页?");

        

        if (message == true) {

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

        }

        else {

            document.write("do not open.");

        }

    }


  </script> 

 </head> 

 <body> 

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

 </body>

</html>


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

举报

0/150
提交
取消

代码出来了,大家可以引荐

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