问答详情
源自:1-1 让你认识JS

帮忙看看我这个代码有什么错误,为什么不出效果,在Dreamweaver里document不显示内容

<!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>


提问者:慕粉3781683 2016-08-11 16:11

个回答

  • 个人的黑店
    2016-08-11 16:28:37
    已采纳

    你打错了,

    document.write=("感谢你的关注");这里没有=,应该是document.write("感谢你的关注");这样就可以。而且其实if(mysun==true)这个你直接写成if(mysun)就可以了


  • 慕仔3338949
    2016-08-11 16:32:33

    多了=号

  • 慕粉3671728
    2016-08-11 16:22:03

    document.write();输出内容不需要用=号 

  • 慕粉3810749
    2016-08-11 16:16:14

    document.write();输出内容不需要用=号