<html>
<body>
<p>单击该按钮创建一个带有一些文本的 CITE 元素。</p>
<button onclick="myFunction()">试一试</button><br><br>
<img src="img_the_scream.jpg" width="220" height="277" alt="呐喊">
<script>
function myFunction() {
var x = document.createElement("CITE");
var t = document.createTextNode("The Scream.");
x.appendChild(t);
document.body.appendChild(x);
}
</script>
</body>
</html>