求解求解,问什么没有输入网址的框!!!
<!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 open=confirm('你确定要打开一个窗口吗');
if(open==true)
{
var wangzhi=prompt("请输入你的成绩","http://www.imooc.com");
if(wangzhi!=null)
{
window.open(wangzhi,widt=400,height=500,menubar=no,toolbar=no);
}
}
else
{
document.write("那你想干啥");
}
// 通过输入对话框,确定打开的网址,默认为 http://www.imooc.com/
//打开的窗口要求,宽400像素,高500像素,无菜单栏、无工具栏。
}