有沒有辦法爲一個主題加載一組特定的圖標?我嘗試使用data-theme=c
並沒有奏效jQuery Mobile爲主題加載一組特定的圖標?
的CSS
[data-theme=c].ui-icon,
[data-theme=c].ui-icon-searchfield:after {
background-image: url(../images/icons-18-black.png) /*{global-icon-set}*/;
background-repeat: no-repeat;
-moz-border-radius: 9px;
-webkit-border-radius: 9px;
border-radius: 9px;
}
HTML
<ul data-role="listview" data-divider-theme="b" data-inset="true">
<li data-theme="c">
<a href="#page4" data-transition="slide">
Items
</a>
</li>
你需要在'[數據主題= 「C」]'報價? – jmort253
@ jmort253加入引號不起作用。 hmm – acctman
確保您使用的是比jQuery UI所使用的更具體的CSS選擇器。此外,請嘗試使用''塊來測試這些以確保您的選擇器是正確的。樣式塊的優先級高於外部CSS。如果這不起作用,那麼你的CSS規則就會被破壞。如果它確實起作用,那麼你需要更具體的CSS選擇器。 – jmort253