<!doctype html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title></title>
<script type="text/javascript">
function wopen(){
var nline;
var oline=prompt();
nline=confirm("确定要打开")
if(nline)
{
window.open(oline,'_blank','width=400,height=500,menubar=no,toolbar=no');
}
}
</script>
</head>
<body>
<input name="bt" type="button" onclick="wopen" value="点击我试试">
</body>
</html>
帮忙看下,为什么点击“点击我试试”没有反应呢
<input name="bt" type="button" onclick="wopen" value="点击我试试"> 改为onclick="wopen()"
onclick里的wopen少了(),
var nline;
var oline=prompt();
nline=confirm("确定要打开")
if(nline)
还有这段代码根本不知道你要干嘛,你confirm之后想prompt的话,首先要if(nline==true),然后online=prompt('请输入网址:','http://www.imooc.com')
亲,你的confirm确认语句后面的if语句并没有判断吧,if里面的括号里面改成nline==true试试