请问为什么我点击按钮没有反应呢?
function a()
{
var b=confirm('欢迎来到慕课网');
if (b==true)
{window.open("http://www.imooc.com",'_blank','width=600px,height=400px');
}
}
<input type="button" value="点击我,打开新窗口" onclick=a()/>
function a()
{
var b=confirm('欢迎来到慕课网');
if (b==true)
{window.open("http://www.imooc.com",'_blank','width=600px,height=400px');
}
}
<input type="button" value="点击我,打开新窗口" onclick=a()/>
2017-09-09
举报