طريقة jQuery removeProp ()

❮ أساليب jQuery HTML / CSS

مثال

إضافة وإزالة خاصية تسمى "color":

$("button").click(function(){
  var $x = $("div");
  $x.prop("color", "FF0000");
  $x.append("The color property: " + $x.prop("color"));
  $x.removeProp("color");
});

التعريف والاستخدام

تزيل طريقة removeProp () خاصية تم تعيينها بواسطة طريقة prop () .

ملاحظة: لا تستخدم هذه الطريقة لإزالة سمات HTML مثل النمط أو المعرف أو التحديد. استخدم طريقة removeAttr () بدلاً من ذلك.


بناء الجملة

$(selector).removeProp(property)

Parameter Description
property Specifies the name of the property to remove

❮ أساليب jQuery HTML / CSS