“jQuery ganti teks di tombol” Kode Jawaban

jQuery ganti teks di tombol

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

jQuery ganti teks di tombol

<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

Jawaban yang mirip dengan “jQuery ganti teks di tombol”

Pertanyaan yang mirip dengan “jQuery ganti teks di tombol”

Lebih banyak jawaban terkait untuk “jQuery ganti teks di tombol” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya