目录

style listStyleImage 属性

示例

指定图片作为列表中的列表项标记:

document.getElementById("myList").style.listStyleImage = "url('sqorange.gif')";
亲自试一试 »

描述

listStyleImage 属性设置或返回图片作为列表项标记。


浏览器支持

Property
listStyleImage Yes Yes Yes Yes Yes

语法

返回 listStyleImage 属性:

object.style.listStyleImage

设置 listStyleImage 属性:

object.style.listStyleImage = "none| url|initial|inherit"

属性值

Value Description
none No image will be displayed. This is default
url Specifies the path to the image
initial Sets this property to its default value. Read about initial
inherit Inherits this property from its parent element. Read about inherit


技术细节

默认值: 没有任何
返回值: 一个String,代表图片的位置路径
CSS版本 CSS1

更多示例

示例

返回列表样式图片属性值:

alert(document.getElementById("myList").style.listStyleImage);
亲自试一试 »

相关页面

CSS教程:CSS 列表

CSS 参考:列表样式图片属性

HTML DOM 参考:listStyle 属性