目录

HTML DOM ol 对象


Ol 对象

Ol 对象代表 HTML <ol> 元素。

访问 Ol 对象

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

示例

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

创建一个 Ol 对象

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

示例

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

Ol 对象属性

Property Description
compact Not supported in HTML5. Use style.lineHeight instead.
Sets or returns whether the list should render smaller than normal, or not
reversed Sets or returns whether the list order should be descending or not
start Sets or returns the value of the start attribute of an ordered list
type Sets or returns the value of the type attribute of an ordered list

标准属性和事件

Ol 对象也支持标准特性事件


相关页面

HTML 参考:HTML <ol> 标签