“JQuery Usuń atrybut” Kod odpowiedzi

Usuń jQuery atrybut

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

Przycisk JQuery Usuń atrybut wyłączony

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

JQuery Usuń atrybut

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

Przypisana właściwość Usuń w 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

Odpowiedzi podobne do “JQuery Usuń atrybut”

Pytania podobne do “JQuery Usuń atrybut”

Więcej pokrewnych odpowiedzi na “JQuery Usuń atrybut” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu