慕粉3781683
2016-08-11 16:11
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>我们互动下</title>
<script type="text/javascript">
function add(){
var mysun=confirm("关注JS高级课程");
if(mysun==true)
{
document.write=("感谢你的关注");
}
else
{
document.write=("期待你的下次点击");
}
}
</script>
</head>
<body>
<p id="con">JS进阶篇</p>
<form>
<input type="button" value="点击" onClick="add()"/>
</form>
</body>
</html>
你打错了,
document.write=("感谢你的关注");这里没有=,应该是document.write("感谢你的关注");这样就可以。而且其实if(mysun==true)这个你直接写成if(mysun)就可以了
多了=号
document.write();输出内容不需要用=号
document.write();输出内容不需要用=号
JavaScript进阶篇
468061 学习 · 21891 问题
相似问题