如何在jQuery中更改按钮的文本值?目前,我的按钮有“添加”作为其文本值,点击后,我希望它改变为“保存”。我尝试过下面这个方法,但到目前为止还没有成功:
$("#btnAddProfile").attr('value', 'Save');
如何在jQuery中更改按钮的文本值?目前,我的按钮有“添加”作为其文本值,点击后,我希望它改变为“保存”。我尝试过下面这个方法,但到目前为止还没有成功:
$("#btnAddProfile").attr('value', 'Save');
当前回答
$( "#btnAddProfile" ).on( "click",function(event){
$( event.target ).html( "Save" );
});
其他回答
$("#btnviewdetails").click(function(){
if($(this).val()!="hide details"){
$("#detailedoutput").show();
$(this).val('hide details');
}else{
$("#detailedoutput").hide();
$(this).val('view more details');
}
});
$("#btnAddProfile").html('Save').button('refresh');
在c#中更改按钮礼仪的名称。
<button type="submit" name="add" id="btnUpdate" class="btn btn-primary" runat="server" onserverclick="btnUpdate_Click">
Add
btnUpdate.**InnerText** = "Update";
$(“#btnAddProfile”).text(“保存”);
document.getElementById('btnAddProfile').value='Save';