<!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 mymessage=confirm("是否打开");
if(mymessage==true)
{
var talk=prompt("请输入网址");
window.open('talk','width=400,height=500,menubar=no,toolbar=no');
}
else
{
window.open('http://www.imooc.com','width=400,height=500,menubar=no,toolbar=no');
}
}
</script>
</head>
<body>
<input type="button" value="新窗口打开网站" onclick="openWindow()" />
</body>
</html>
设置浏览器窗口的宽高度的值没有双引号
var mymessage=confirm("是否打开");
这句结尾使用了中文的分号
我觉的是不是没有输入窗口名称属性啊
注意window.open()函数的语法:
window.open([URL], [窗口名称], [参数字符串])
open window.('talk','width=400,height=500,menubar=no,toolbar=no');