“JQuery menghapus atribut” Kode Jawaban

Hapus atribut jQuery

$("button").click(() => {
  $("div").removeAttr("id"); // <div id='12' class='nice'></div> --> <div class='nice'></div>
});
Ganandor

tombol jQuery hapus atribut yang dinonaktifkan

//for a class
$('.inputDisabled').prop("disabled", false);
//for a ID
$('#inputDisabled').prop("disabled", false);
Ivan The Terrible

JQuery menghapus atribut

jQuery(document).ready(function($){
	$('.className').click(function(){
    	$('.targetElementClassName').removeAttr('title');
    });
});
Gabriel Francis Banua

Hapus properti yang ditugaskan di jQuery

We can use removeAttr() to delete the assigned property of the element.

Example:
<p class="element_name" id="element_id" name="element_name">
  
js: $("p").removeAttr("name");
output: <p class="element_name" id="element_id">
Ankur

Jawaban yang mirip dengan “JQuery menghapus atribut”

Pertanyaan yang mirip dengan “JQuery menghapus atribut”

Lebih banyak jawaban terkait untuk “JQuery menghapus atribut” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya