2012-07-19 50 views
0

我試圖做兩個部分和每個鏈接上的不同鏈接的列表,但是我不能在列表的右部使用圖標。沒有圖標的JQuery Mobile拆分按鈕列表

我試圖把數據圖標='假'到處,但它不起作用,它使用默認圖標。

我也嘗試過使用它,但它工作正常,但我無法使它看起來像分割列表一樣好。

任何想法如何做到這一點?

非常感謝!

回答

0

我設法用這樣controlgroup做到這一點,並在.css文件播放寬度:

<li data-role='list-divider'> 
    <div data-role='controlgroup' data-type='horizontal' > 
     <a class='resume' type='button' href='javascript:void(0)'> 
      <span class='name' >Object Name </span> 
     </a> 
     <a class='info' type='button' href='javascript:void(0)'> 
      <span class='name'>Max Value </span> 
     </a> 
    </div> 
</li> 
1

您可以覆蓋的.ui圖標類的jQuery Mobile的這樣的事情,

.ui-icon-your_name_icon { 
    width: 18px; 
    height: 18px; 
    -moz-border-radius: 0px; 
    -webkit-border-radius: 0px; 
    border-radius: 0px; 
    background-position: 50% 50%; 
    background: url("../images/some_one_image_transparent.png") no-repeat scroll 0 0 transparent; 
} 

我希望這有助於。 :)

相關問題