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

怎么能让消息对话框prompt点击取消后不跳转网页

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

if(a==true)

{var b=prompt("确定打开的网址","http://www.imooc.com/");window.open('http://www.imooc.com/','_blank',width=400,height=500)}

else

{document.write("再见");}

}

</script> 

 </head> 

 <body> 

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

 </body>

</html>




现在prompt点击取消也会跳出网页,怎么能不跳出网页?

正在回答

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 a=confirm("是否打开?");

if(a==true)

{var b=prompt("确定打开的网址","http://www.imooc.com/");if (b!=null){window.open('http://www.imooc.com/','_blank',width=400,height=500);}else{alert("bye");}}

else

{document.write("再见");}

}

</script> 

 </head> 

 <body> 

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

 </body>

</html>

但怎么能让仅仅输入该网址时才跳转网页,输入别的都无效呢

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

举报

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

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

进入课程

怎么能让消息对话框prompt点击取消后不跳转网页

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