x
1
2
<html>
3
<head>
4
<meta charset="utf-8">
5
<title>蜜蜂教程(mifengjc.com)</title>
6
<script>
7
function displayResult() {
8
document.getElementById("p1").style.fontVariant = "small-caps";
9
}
10
</script>
11
</head>
12
<body>
13
14
<p id="p1">This is some text.</p>
15
<p>THIS IS SOME TEXT.</p>
16
<br>
17
<button type="button" onclick="displayResult()">修改字体</button>
18
19
</body>
20
</html>