weixin_慕慕7596948
2020-09-15 15:51
<!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=confirm("点击确定");
if(m==ture)
{
window.open('http://www.imooc.com/','_blank','width=400,height=500,menubar=no')
}
}
</script>
</head>
<body>
<input type="button" value="新窗口打开网站" onclick="openWindow()" />
</body>
</html>
其实你可以直接if(confirm('是否新窗口打开')){} 就行. 反正确定就是true 取消就false了
true 不是ture 我也总写错
if(m==true),你的true写错了
JavaScript入门篇
739817 学习 · 9566 问题
相似问题