原因:“我不管点哪个提示按钮,都执行第一个if语句”<!DOCTYPE html><html> <head> <title> new document </title> <meta http-equiv="Content-Type" content="text/html; charset=gbk"/> <script type="text/javascript"> function Wopen(){ var str=confirm("你确定要打开新窗口?"); if(str=true) { window.open('http://www.imooc.com','_self','width=400,height=500,nenubar=no,status=no'); } else if(str=false){ alert("你离开了!"); }} </script> </head> <body> <input name="button" type="button" onClick="Wopen()" value="点击我,打开新窗口!" /> </body></html>
添加回答
举报
0/150
提交
取消