<!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 message=confirm("打开新的网页么");
if(message==true)
{add=prompt("请输入要打开的网址");
window.open('add','_blank','width=400,height=500');
}
}
</script>
</head>
<body>
<input type="button" value="新窗口打开网站" onclick="openWindow()" />
</body>
</html>
不能够呀,是不是弹出对话框的时候没有输入http://。直接输入网址。
需要注意一点,现在的浏览器输入框都做过处理。所以前面没输入http://也可以链接到正确的网站的。但是这里的js用的是原始的,需要加上超文本传输协议。超文本传输协议就是http://。
你试试看。
window.open('add','_blank','width=400,height=500');
变量名不需要加引号,把包裹add的引号删去。