碎佛
2019-07-27 21:37
function openWindow(){ var meme; meme=confirm("ok?"); if (meme==ture) { var url; url=prompt("input the web"); if(url==null) { window.open('http://www.imooc.com/','_blank','width=400,height=500,menubar=no,toolbar=no'); } else{ window.open(url,'_blank''width=400,height=500,menubar=no,toolbar=no'); } } else { alert("error!"); } }
<!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 m_mes=confirm("是否打开666");
if(m_mes==true)
{
prompt("这个是输入对话框,认识下prompt",
"http://www.baidu.com/");
window.open(
'http://www.baidu.com','_blank',
'width=400,height=500,top=100,menubar=no,toolbar=no'
)
}
else
{
document.write("nono-test!");
}
}
</script>
</head>
<body>
<input type="button" value="新窗口打开网站" onclick="openWindow()" />
</body>
</html>
你代码中
if (url== null)
这句的逻辑是反向的,应当改为 (url != null) ,还要看浏览器是否把你的弹出窗口拦截了,这个一般在浏览器地址栏有提示
JavaScript入门篇
739817 学习 · 9566 问题
相似问题