如何在jQuery中更改按钮的文本值?目前,我的按钮有“添加”作为其文本值,点击后,我希望它改变为“保存”。我尝试过下面这个方法,但到目前为止还没有成功:

$("#btnAddProfile").attr('value', 'Save');

当前回答

你需要执行。button("refresh")

HTML:

<button id='btnviewdetails' type='button'>SET</button>

JS :

$('#btnviewdetails').text('Save').button("refresh");

其他回答

使用.val ()

这里有一个到jsf的链接

要更改按钮的文本,只需执行下面的jQuery行 为

<输入类型=“按钮”值=“XYZ”id=“btnaddprofil”>

use

$("#btnAddProfile").val('Save');

而对于

<button id='btnAddProfile'>XYZ</button>

使用这个

$(“#btnAddProfile”).html(“保存”);

这是我的工作 html:

<button type="button" class="btn btn-primary" id="btnSaveSchedule">abc</button>

js

$("#btnSaveSchedule").text("new value");

如果你有按钮,这似乎工作:

<button id="button">First caption</button>

$('#button').button();//make it nice
var text="new caption";
$('#button').children().first().html(text);

你可以使用

$("#btnAddProfile").text('Save');

虽然

$("#btnAddProfile").html('Save');

也可以,但这是一种误导(它给人的印象是你可以写什么

$("#btnAddProfile").html('Save <b>now</b>');

当然你不能