<!DOCTYPE html>
<html>
<head>
<title> new document </title>
<meta http-equiv="Content-Type" content="text/html; charset=gbk"/>
<script type="text/javascript">
function openwidow(){
var miss=confirm("确认打开新窗口吗?")
if(miss==true){
var p = prompt("新窗口打开以下网址:","http://www.imooc.com/");
window.open('http://www.imooc.com','_blank','height=500,width=400,menubar=no,toolbar=no')
}
</script>
</head>
<body>
<input type="button" value="新窗口打开网站" onclick="openWindow()" />
</body>
</html>
首先是你的function 后面的openWindow 字母打错了 而且要区分大小写,和下面onclick里面的openWindow必须要一致。
第二,少了个大括号 }
自己写的东西不堪的吗?你openwindow写的一致么?window.open里的元素单引号呢,prompt有什么用