--- title:
  • slug: Web/HTML/Element/li translation_of: Web/HTML/Element/li ---

    {{HTMLRef}}

    HTML <li> 元素 (或称 HTML 列表条目元素) 用于表示列表里的条目。它必须包含在一个父元素里:一个有序列表({{HTMLElement("ol")}}),一个无序列表({{HTMLElement("ul")}}),或者一个菜单 ({{HTMLElement("menu")}})。在菜单或者无序列表里,列表条目通常用点排列显示;在有序列表里,列表条目通常在左边显示按升序排列的计数,例如数字或者字母。

    内容类别
    允许的内容 流式内容
    标签省略 如果列表元素的后面紧随另一个 {{HTMLElement("li")}} 元素,或者它的父元素中没有更多内容,结束标签可以省略。
    允许的父元素 {{HTMLElement("ul")}}、 {{HTMLElement("ol")}}、 或者 {{HTMLElement("menu")}} 元素。过时的 {{HTMLElement("dir")}} 也可以作为父元素,但是并不提倡。
    DOM 接口 {{domxref("HTMLLIElement")}}
    元素类型 块级

    属性

    这个元素拥有全局属性

    {{htmlattrdef("value")}}
    这个整数型属性表明了本 {{HTMLElement("li")}} 元素在有序列表 (由 {{HTMLElement("ol")}} 元素定义)中的序号。本属性值只能用数字,即使列表使用罗马数字或字母来展示。随后的列表条目会从设置的值开始计数。value 属性对于无序列表 ({{HTMLElement("ul")}}) 或者菜单 ({{HTMLElement("menu")}}) 无效。
    注: 这个属性在 HTML 4 中废弃,但是在 HTML 5 中重新引入。

    注: 在 {{Gecko("9.0")}} 之前,负值会错误地转换为 0。{{Gecko("9.0")}} 开始,所有整数值都可以正确解析。

    {{htmlattrdef("type")}} {{Deprecated_inline}}
    这个字符型属性表明了数字的类型:
    • a: 小写字母
    • A: 大写字母
    • i: 小写罗马数字
    • I: 大写罗马数字
    • 1: 数字
    本属性值将覆盖 {{HTMLElement("ol")}} 元素中的同名属性值(若存在)。
    使用注解: 本属性已废弃:使用 CSS {{cssxref("list-style-type")}} 属性来代替。

    示例

    <ol>
        <li>first item</li>
        <li>second item</li>
        <li>third item</li>
    </ol>
    

    上面的 HTML 会输出:

    1. first item
    2. second item
    3. third item
    <ol type="I">
        <li value="3">third item</li>
        <li>fourth item</li>
        <li>fifth item</li>
    </ol>
    

    上面的 HTML 会输出:

    1. third item
    2. fourth item
    3. fifth item
    <ul>
        <li>first item</li>
        <li>second item</li>
        <li>third item</li>
    </ul>

    更多具体示例请见 <ol> 和 <ul> 页面。

    规范

    Specification Status Comment
    {{SpecName('HTML WHATWG', 'grouping-content.html#the-li-element', '<li>')}} {{Spec2('HTML WHATWG')}}  
    {{SpecName('HTML5 W3C', 'grouping-content.html#the-li-element', '<li>')}} {{Spec2('HTML5 W3C')}}  
    {{SpecName('HTML4.01', 'lists.html#h-10.2', '<li>')}} {{Spec2('HTML4.01')}} The type attribute has been deprecated.

    浏览兼容性

    {{CompatibilityTable}}
    Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari
    Basic support {{CompatVersionUnknown}} {{CompatGeckoDesktop("1.0")}} {{CompatVersionUnknown}} {{CompatVersionUnknown}} {{CompatVersionUnknown}}
    Feature Android Firefox Mobile (Gecko) IE Mobile Opera Mobile Safari Mobile
    Basic support {{CompatVersionUnknown}} {{CompatGeckoMobile("1.0")}} {{CompatVersionUnknown}} {{CompatVersionUnknown}} {{CompatVersionUnknown}}

    另见