2013-05-15 60 views
-1

我一直試圖在我的網頁中插入加號(+)圖標,但它沒有顯示出來。 我不知道爲什麼,也許我需要它的圖片,以便它會顯示出來?如何在圖標中插入jQuery-Mobile按鈕?

<a data-role="button" data-theme="b" data-icon="plus" data-iconpos="right">Save</a> 

但它不能正常工作。

任何關於我如何讓它出現的建議?

回答

2

工作例如:http://jsfiddle.net/Gajotres/m4rjZ/

$('[data-role="content"]').append('<a data-role="button" data-theme="b" data-icon="plus" data-iconpos="right">Save</a>'); 
    // Enhance new button element 
    $('[data-role="button"]').button();  
+0

它工作正常感謝名單 –