输出内容document.getElementById(id)须写在被替换的文本前,否则只能输出文本,不能替换文本。
例如:<p id="top">我的第一个程序</p>
<script>
document.getElementById("top").innerHTML="你的孤独,虽败犹荣";
</script>
输出内容document.getElementById(id)须写在被替换的文本前,否则只能输出文本,不能替换文本。
例如:<p id="top">我的第一个程序</p>
<script>
document.getElementById("top").innerHTML="你的孤独,虽败犹荣";
</script>
2014-08-21
举报