最新的Web開發教程
 

Style listStyleImage Property

<Style對象

指定的圖像為列表中的列表項標記:

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

定義和用法

該listStyleImage屬性設置或返回圖像為列表項標記。


瀏覽器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

該listStyleImage屬性在所有主流瀏覽器的支持。


句法

返回listStyleImage屬性:

object .style.listStyleImage

設置listStyleImage屬性:

object .style.listStyleImage="none| 屬性值
描述
none 沒有圖像顯示出來。 這是默認
url 指定圖像的路徑
initial 將此屬性設置為默認值。 閱讀關於初始
inherit 繼承其父元素此屬性。 閱讀關於繼承

技術細節

默認值: 沒有
返回值: 一個字符串,表示圖像的位置路徑
CSS版本 CSS1

更多示例

返回列表樣式圖像屬性值:

alert(document.getElementById("myList").style.listStyleImage);
試一試»

相關頁面

CSS教程: CSS列表

CSS參考: list-style-image property

HTML DOM參考: listStyle property


<Style對象