这个练习题不会?
很迷茫,看了其他同学的代码,都不太一样,不知道怎么做才是正确的。
2016-06-03
<!DOCTYPE html>
<html>
<head>
<title> new document </title>
<meta http-equiv="Content-Type" content="text/html; charset=gbk"/>
<script type="text/javascript">
function lian(){
var prc=confirm("是否打开弹窗?") // 新窗口打开时弹出确认框,是否打开
if(prc==true){
var add=prompt("请输入:") // 通过输入对话框,确定打开的网址,默认为 http://www.imooc.com/
if(add!=null){
window.open("http://www.imooc.com","_blank","width=600,height=400")
//打开的窗口要求,宽600像素,高400像素,无菜单栏、无工具栏。
}
}
}
</script>
</head>
<body>
<input type="button" value="新窗口打开网站" onclick="lian()" />
</body>
</html>
起的名字不用管,随便起的,看代码就好
举报