“jQuery Substitua o texto no botão” Respostas de código

jQuery Substitua o texto no botão

$("#thebutton span").text("My NEW Text");
Dizzy Dotterel

jQuery Substitua o texto no botão

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

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

<!-- Different button types-->

<button id='btnAddProfile' type='button'>Add</button>
$("#btnAddProfile").html('Save');
Dizzy Dotterel

Respostas semelhantes a “jQuery Substitua o texto no botão”

Perguntas semelhantes a “jQuery Substitua o texto no botão”

Mais respostas relacionadas para “jQuery Substitua o texto no botão” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código