qq_尽智而动_0
2016-06-07 20:46
<!DOCTYPE html>
<html>
<head>
<title> new document </title>
<meta http-equiv="Content-Type" content="text/html; charset=gbk"/>
<script type="text/javascript">
function top(){
var top1=confirm("确定打开网站吗?");
if(top1==ture)
{var top2=prompt("打开的网站对吗?","http://www.imooc.com/");
if(top2==true)
{window.open('top2','_blank','width=400,height=500,menubar=no,toolbar=no,scrollbars=yes,status=yes');}
else
{alert("那么退出");}
}
else{alert("现在进不去了");}
}
// 新窗口打开时弹出确认框,是否打开
// 通过输入对话框,确定打开的网址,默认为 http://www.imooc.com/
//打开的窗口要求,宽400像素,高500像素,无菜单栏、无工具栏。
</script>
</head>
<body>
<form>
<input type="button" value="打开窗口按钮" onclick="top()">
</form>
</body>
</html>
function openWindow(){
// 新窗口打开时弹出确认框,是否打开
var check=confirm("是否打开新的窗口")
if(check==true)
{
// 通过输入对话框,确定打开的网址,默认为 http://www.imooc.com/
var address=prompt("确定打开的网址","http://www.imooc.com");
//打开的窗口要求,宽400像素,高500像素,无菜单栏、无工具栏。
window.open(address,'width=400,height=500,menubar=no,toolnbar=no')
}
else
{
}
}
注意window.open()第一个参数的传值。
prompt返回值错误,
prompt函数返回的值不是布尔
JavaScript入门篇
739817 学习 · 9566 问题
相似问题