<!DOCTYPE html>点击按钮创建一个 OL 元素和一个 LI 元素。id="demo"onclick="myFunction()"尝试一下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);}