1. document.getElementById(Id)方法
document.getElementById(Id).innerHTML="替换内容";
2. 写到文档输出
document.write("<p>我的第一段 JavaScript</p>");
3. 点击触发
<button type="button" onclick="myFunction()">点击这里</button>
4. For/In语句循环遍历对象的属性
5. JavaScript 更改此元素的属性(把 “smiley.gif” 改为 “landscape.jpg”)
<img id="image" src="smiley.gif">
<script>
document.getElementById("image").src="landscape.jpg";
</script>
6. visibility = “hidden” / “visible”