如何使用图标插入jQuery-Mobile按钮?

时间:2013-05-15 13:29:23

标签: jquery css jquery-mobile jquery-mobile-button

我一直在尝试在我的网页中插入一个Plus(+)ICON但它没有显示出来。 我不知道为什么或者我需要它的图片以便它出现?

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

但它不能正常工作。

关于如何让它出现的任何建议?

1 个答案:

答案 0 :(得分: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();