似乎我不能把圖標正確,有人可以幫我嗎? jQuery Mobile的版本:1.4.2把小圖標放在列表視圖jQuery Mobile
<div data-role="page" id="pageone">
<div data-role="main" class="ui-content">
<h2>List With Thumbnails and Text</h2>
<ul data-role="listview" data-inset="true">
<li>
<a href="#">
<img src="chrome.png">
<h2>Google Chrome</h2>
<p><img class='ui-icon-home ui-btn-icon-notext ui-btn-icon-left'/> Google Chrome is a free, open-source web browser. Released in 2008.</p>
</a>
</li>
<li>
<a href="#">
<img src="firefox.png">
<h2>Mozilla Firefox</h2>
<p>Firefox is a web browser from Mozilla. Released in 2004.</p>
</a>
</li>
</ul>
</div>
</div>
結果:
我嘗試使用這個,但不起作用。
<span><i class='ui-icon-home ui-btn-icon-notext ui-btn-icon-left'>Text</i></span>
你需要的是正確的..刪除默認圖標,並顯示這個主頁圖標或其他 – Aravin
我需要把圖標旁邊的「Google Chrome是免費的......」一詞。 但是你可以看到當前對齊已經消失,即使我把圖標的位置留下了。 – Info
檢查此http://jsfiddle.net/QETcC/告訴需要做什麼更改 – Aravin