x
 
<!DOCTYPE html>
<html>
<body>
<p>单击按钮可创建一个 OL 元素和一个 LI 元素。</p>
<button onclick="myFunction()">试一试</button>
<p id="demo"></p>
<script>
function myFunction() {
  var x = document.createElement("OL");
  x.setAttribute("id", "myOl");
  document.body.appendChild(x);
  var y = document.createElement("LI");
  var t = document.createTextNode("Coffee");
  y.appendChild(t);
  document.getElementById("myOl").appendChild(y);
}
</script>
</body>
</html>