jQuery removeProp()เมธอด
ตัวอย่าง
เพิ่มและลบคุณสมบัติชื่อ "สี":
$("button").click(function(){
var $x = $("div");
$x.prop("color", "FF0000");
$x.append("The color property: " + $x.prop("color"));
$x.removeProp("color");
});
ความหมายและการใช้งาน
removeProp() วิธีการลบคุณสมบัติที่กำหนดโดย prop()วิธีการ
หมายเหตุ:อย่าใช้วิธีนี้เพื่อลบแอตทริบิวต์ HTML เช่น style, id หรือการตรวจสอบ ใช้วิธีremoveAttr()แทน
ไวยากรณ์
$(selector).removeProp(property)
Parameter | Description |
---|---|
property | Specifies the name of the property to remove |