<!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 score;
score=prompt("是否打开新的窗口");
// 新窗口打开时弹出确认框,是否打开
if (score==true)
// 通过输入对话框,确定打开的网址,默认为 http://www.imooc.com/
{
score prompt("请输入你要打开的网址:","http://www.imooc.com/");
//打开的窗口要求,宽400像素,高500像素,无菜单栏、无工具栏。
window.open(score,'_blank','width=400,height500,menubar=no,toolbar=no,')
}
}
</script>
</head>
<body>
<input type="button" value="新窗口打开网站" onclick="openWindow()" />
</body>
</html>
score=prompt("是否打开新的窗口");应该改为confirm,确认提示框
score prompt("请输入你要打开的网址:","http://www.imooc.com/");
//打开的窗口要求,宽400像素,高500像素,无菜单栏、无工具栏。
window.open(score,'_blank','width=400,height500,menubar=no,toolbar=no,')
应该改为
function openWindon(){
if(confirm("确定打开新窗口吗?")){
var url = prompt("请输入一个网址","http://www.imooc.com/");
window.open( url,"_blank","toolbar=no, menubar=no, scrollbars=yes, width=400, height=400");
}}
对的,要在定义一个变量来存放prompt中的内容
var url = prompt("请输入一个网址","http://www.imooc.com/");
window.open( url,"_blank","toolbar=no, menubar=no, scrollbars=yes, width=400, height=400");
}}
确认框使用confirm();
应该新建一个变量来储存要打开的网址,url=prompt("请输入你要打开的网址:")
变量的赋值一定要使用 '='