目录

HTML DOM ul 对象


用户界面对象

Ul 对象表示 HTML <ul> 元素。

访问 UL 对象

您可以使用 getElementById() 访问 <ul> 元素:

示例

var x = document.getElementById("myUL");
亲自试一试 »

创建一个Ul对象

您可以使用 document.createElement() 方法创建 <ul> 元素:

示例

var x = document.createElement("UL");
亲自试一试 »

Ul 对象属性

Property Description
compact Not supported in HTML5. Use style.lineHeight instead.
Sets or returns whether the unordered list should render smaller than normal, or not
type Not supported in HTML5. Use style.listStyleType instead.
Sets or returns the value of the type attribute of an unordered list

标准属性和事件

Ul对象支持标准特性事件


相关页面

HTML 教程:HTML 列表

HTML 参考:HTML <ul> 标签