代码如下,首先我做了confirm的判断,我想让prompt也可以判断,如果正确就打开,如果错误就不打开,现在在prompt弹窗中点确认或者取消都会弹出网站。。。求解答,谢谢了
<!DOCTYPE html>
<html>
<head>
<title> new document </title>
<meta charset="utf-8">
<script type="text/javascript">
function abc()
{
var chuangkou=confirm("确定打开这个网址吗?");
if (chuangkou==true)
{
var shuru=prompt("请输入你要访问的网址"," http://www.baidu.com");
window.open('http://www.baidu.com','_blank','width=400,height=500,munuber=no,toolber=no,');
}
}
</script>
</head>
<body>
<input type="button" value="点击我" onclick="abc()"/>
</body>
</html>
相关分类