codecamp

HTML DOM Ol 对象

Ol 对象表示一个 HTML <ol> 元素。

访问 Ol 对象

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

var x = document.getElementById("myOl");尝试一下

创建 Ol 对象

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

var x = document.createElement("OL");尝试一下

Ol 对象属性

属性 描述
compact HTML5 中不支持。使用 style.lineHeight 替代。
设置或返回列表是否呈现比正常情况更小巧的效果。
reversed 设置或返回列表是否为降序。
start 设置或返回有序列表的 start 属性的值。
type 设置或返回有序列表的 type 属性的值。

标准属性和事件

Ol 对象同样支持标准 属性事件


相关文章

HTML 参考手册:HTML <ol> 标签

HTML DOM Meter 对象
HTML DOM OptionGroup 对象
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

HTML DOM对象

HTML DOM 引用对象

HTML DOM Password 对象

HTML DOM Link 对象

HTML DOM Select 对象

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }