Jquery Button text change - 버튼 텍스트 변경
button 타입으로 되어있는 input 박스에서 클릭 시 버튼의 텍스트를 변경해주는 스크립트 입니다.
<input type='button' value='Add' id='btnAddProfile'>
$("#btnAddProfile").attr('value', 'Save');
<input type='button' value='Add' id='btnAddProfile'>
$("#btnAddProfile").prop('value', 'Save');
<button id='btnAddProfile' type='button'>Add</button>
$("#btnAddProfile").html('Save');
버튼으로 되어 있고 span 텍스트를 변경 시에는 아래 스크립트를 참조하세요.
<button id="thebutton">
<span class="ui-button-text">My Text</span>
</button>
$("#thebutton span").text("My NEW Text");