x
1
2
<html>
3
<head>
4
<meta charset="utf-8">
5
<title>蜜蜂教程(mifengjc.com)</title>
6
<script>
7
function demoDisplay() {
8
document.getElementById("p1").style.display = "none";
9
}
10
11
function demoVisibility() {
12
document.getElementById("p2").style.visibility = "hidden";
13
}
14
</script>
15
</head>
16
<body>
17
18
<p id="p1">这是一些文本。</p>
19
<p id="p2">这是一些文本。</p>
20
<input type="button" onclick="demoDisplay()" value="隐藏显示属性的文本">
21
<input type="button" onclick="demoVisibility()" value="具有可见性属性的隐藏文本">
22
23
</body>
24
</html>