jQuery 动态更改按钮上的图标或文字

Posted RickyShilx

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery 动态更改按钮上的图标或文字相关的知识,希望对你有一定的参考价值。

参考链接:http://stackoverflow.com/questions/5580616/jquery-change-button-text

<input type=‘button‘ value=‘Add‘ id=‘btnAddProfile‘>
<script>
$("#btnAddProfile").attr(value, Save); //versions older than 1.6
</script>

<input type=‘button‘ value=‘Add‘ id=‘btnAddProfile‘>
<script>
$("#btnAddProfile").prop(value, Save); //versions newer than 1.6
</script>

<!-- Different button types-->

<button id=‘btnAddProfile‘ type=‘button‘>Add</button>
<script>
$("#btnAddProfile").html(Save); // 支持修改图标
$("#btnAddProfile").text(Save); // 只支持修改文本
</script>

 

以上是关于jQuery 动态更改按钮上的图标或文字的主要内容,如果未能解决你的问题,请参考以下文章

jquery easyui怎么动态改数据表格上的toolbar的按钮的样式和文字

使用片段上的按钮更改片段

动态更改 jQuery Mobile 列表视图中的图标

android:从代码动态更改FAB(浮动操作按钮)图标

HTML代码片段

HTML代码片段