“jQuery reemplazar texto en el botón” Código de respuesta

jQuery reemplazar texto en el botón

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

jQuery reemplazar texto en el botón

<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

Respuestas similares a “jQuery reemplazar texto en el botón”

Preguntas similares a “jQuery reemplazar texto en el botón”

Más respuestas relacionadas con “jQuery reemplazar texto en el botón” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código