<!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)
{
window.open(' http://www.imooc.com/','width=400,height=500,menubar=no,toolbar=no');
}
else
{
}
}
// 新窗口打开时弹出确认框,是否打开
// 通过输入对话框,确定打开的网址,默认为 http://www.imooc.com/
//打开的窗口要求,宽400像素,高500像素,无菜单栏、无工具栏。
</script>
</head>
<body>
<input type="button" value="新窗口打开网站" onclick="openWindow()" />
var mymessage==confirm("确认打开此网址?");
== 改为 =
<!DOCTYPE html>
<html>
<head>
<title> new document </title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<script type="text/javascript">
function openWindow(){
var mychar=confirm("新窗口打开网站");
if(mychar==true){
var addr=prompt("输入网址","http://www.imooc.com/");
if(addr!=null){
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>
这是最简单的代码:
初步看你程序错误有:
1:var mymessage==confirm("确认打开此网址?");这个地方是一个=号,是赋值语句;而==是逻辑表达式;
2:根据题目缺少prompt()函数。
var mymessage==confirm("确认打开此网址?");这个地方是一个=号
var mymessage==confirm("确认打开此网址?"); 你写的双等号,正确的为单等号。
这是我写的代码
<!DOCTYPE html>
<html>
<head>
<title> new document </title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<script type="text/javascript">
function openWindow(){
var name=confirm("新窗口打开网站");
if(name==true){
var add=prompt("输入网址","http://www.imooc.com/");
if(add!=null){
window.open('http://www.imooc.com/','width=400,height=500,menubar=no,toolbar=no');
}
else{
window.open();
}
}
else{
}
}
</script>
</head>
<body>
<input type="button" value="新窗口打开网站" onclick="openWindow()" />
</body>
</html>