<html>
<body>
<p>单击该按钮来创建包含缩写 "WHO" 的 ABBR 元素。</p>
<button onclick="myFunction()">试一试</button>
<p id="myP"></p>
<script>
function myFunction() {
var x = document.createElement("ABBR");
var t = document.createTextNode("WHO");
x.setAttribute("title", "World Health Organization");
x.appendChild(t);
document.getElementById("myP").appendChild(x);
}
</script>
</body>
</html>