.removeAttr()
(metodo jQuery) rimuove uno o più attributi dell’elemento selezionato.
Sintassi
$("selettore").removeAttr("nome_attributo nome_attributo2[facoltativo] nome_attributo3[facoltativo]")
parametro | descrizione |
---|---|
nome_attributo | Il nome dell’attributo da rimuovere |
Esempi
<script> $("#id_attr_set").click(function(){ $("#paragrafo1").attr("class", "giallo"); }); $("#id_removeAttr").click(function(){ $("#paragrafo1").removeAttr("class"); }); </script> <style> .giallo { background-color: yellow; </style> <p id="paragrafo1" title="titolo1">paragrafo 1</p> <p id="paragrafo2">paragrafo 2</p> <p id="result1"></p> <button id="id_attr_get">GET attr</button> <button id="id_attr_set">SET attr</button> <button id="id_removeAttr">removeAttr</button>
Contenuti correlati
- CSS
- HTML
- JavaScript
- jQuery
- PHP
- SQL
- WORDPRESS
0 Comment