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

请问下为什么点了一下按钮后页面啥都没有?

<html>

<head>

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

<title>无标题文档</title>

<script>

function open(){

var win=confirm('你确定打开这个窗口吗?')

if(win==true){

       var win1=prompt('打开下面默认的网址?','http://www.imooc.com')

         if(win1!=null){

window.open(win1,'_blank','width=300,height=500,toolbar=no,scrollbars=yes,status=no,menubar=no')}

else{alert('byebye')}

}

else{alert('see you')}

}


</script>

</head>


<body>

<input type="button" value="点击我,打开新窗口" onClick="open()"/>

</body>

</html>


正在回答

3 回答

把你定义的open函数换个名字,比如open_window,你的open与js的open冲突了。望采纳!

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>无标题文档</title>
<script>
function open_window(){
var win=confirm('你确定打开这个窗口吗?')
if(win==true){
       var win1=prompt('打开下面默认的网址?','http://www.imooc.com')
         if(win1!=null){
window.open(win1,'_blank','width=300,height=500,toolbar=no,scrollbars=yes,status=no,menubar=no')}
else{alert('byebye')}
}
else{alert('see you')}
}

</script>
</head>

<body>
<input type="button" value="点击我,打开新窗口" onClick="open_window()"/>
</body>
</html>


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

你每个语句后面的;呢

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

win1是否为空用!==判断吧

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

MVP慕粉 提问者

这个好像没问题呀 不知道咋搞的
2017-06-24 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

请问下为什么点了一下按钮后页面啥都没有?

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