我一直在尝试在我的网页中插入一个Plus(+)ICON但它没有显示出来。 我不知道为什么或者我需要它的图片以便它出现?
<a data-role="button" data-theme="b" data-icon="plus" data-iconpos="right">Save</a>
但它不能正常工作。
关于如何让它出现的任何建议?
答案 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();