为什么我的没有弹出对话框?请教大神
function add()
{
var message=confirm("是否关注JS");
if(message==true)
{document.write("JS进阶篇");}
else
{
alert("!")
}
}
</script>
<body>
<input type="button" value="关注JS高级篇" onclick="add()"/>
</body>
function add()
{
var message=confirm("是否关注JS");
if(message==true)
{document.write("JS进阶篇");}
else
{
alert("!")
}
}
</script>
<body>
<input type="button" value="关注JS高级篇" onclick="add()"/>
</body>
2016-10-22
举报