HTML DOM DList 对象
DList 对象
DList 对象代表 HTML <dl> 元素。
访问 DList 对象
您可使用 getElementById() 访问 <dl> 元素:
var x = document.getElementById("myDL");
创建 DList 对象
您可使用 document.createElement() 创建 <dl> 元素:
var x = document.createElement("DL");