admin管理员组文章数量:1340931
I found a bunch of solutions online, but none of them are working for me. Basically, I want to toggle the icon of a button. Here's the HTML:
<div data-role="navbar" data-iconpos="top">
<ul>
<li><a data-icon="arrow-u">View suggestions</a></li>
</ul>
</div>
I tried all of these:
$(this).buttonMarkup({ icon: 'arrow-u' });
//
$(this).attr('data-icon','arrow-u');
$(this).children().children().next().removeClass('ui-icon-arrow-d').addClass('ui-icon-arrow-u');
//
$(this).jqmData('icon','arrow-u');
However, for some reason, the child elements of the button all disappear after any of the above is ran (jQuery Mobile adds a bunch of <span>
s inside the button).
I found a bunch of solutions online, but none of them are working for me. Basically, I want to toggle the icon of a button. Here's the HTML:
<div data-role="navbar" data-iconpos="top">
<ul>
<li><a data-icon="arrow-u">View suggestions</a></li>
</ul>
</div>
I tried all of these:
$(this).buttonMarkup({ icon: 'arrow-u' });
//
$(this).attr('data-icon','arrow-u');
$(this).children().children().next().removeClass('ui-icon-arrow-d').addClass('ui-icon-arrow-u');
//
$(this).jqmData('icon','arrow-u');
However, for some reason, the child elements of the button all disappear after any of the above is ran (jQuery Mobile adds a bunch of <span>
s inside the button).
4 Answers
Reset to default 8The best way to do that is:
$('#button').buttonMarkup({ icon: "home" });
Try this:
$(this).attr('data-icon','arrow-u').button().trigger("refresh");
See related forum thread: http://forum.jquery./topic/how-dynamically-update-data-attributes
I found the problem! I used $(this).text('Hide suggestions')
, which removed all child elements. I changed it to $(this).find('.ui-btn-text').text('Hide suggestions');
and it works perfectly now!
These worked for me :
$("#yourButtonId .ui-icon").removeClass("ui-icon-gear").addClass("ui-icon-delete");
$(this).children("span").children(".ui-icon").removeClass("ui-icon-gear").addClass("ui-icon-delete");
$(this).find(".ui-icon").removeClass("ui-icon-gear").addClass("ui-icon-save");
I don't know witch is the best, the last I think.
本文标签: javascriptChanging dataicon in jQuery MobileStack Overflow
版权声明:本文标题:javascript - Changing data-icon in jQuery Mobile? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743659677a2517728.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论