Contoh
Menambah dan menghapus properti bernama "color" :
$("button").click(function(){
var $x = $("div");
$x.prop("color", "FF0000");
$x.append("The color property: " + $x.prop("color"));
$x.removeProp("color");
});
Cobalah sendiri " Definisi dan Penggunaan
The removeProp() metode menghapus properti yang ditetapkan oleh prop() metode.
Catatan: Jangan gunakan metode ini untuk menghapus atribut HTML seperti gaya, id, atau diperiksa.Gunakan removeAttr() metode sebagai gantinya.
Sintaksis
$(selector).removeProp(property)
Parameter | Deskripsi |
---|---|
property | Menentukan nama properti untuk menghapus |