removeProp()方法用于刪除prop()方法設(shè)置的屬性。
注意:請(qǐng)勿使用此方法刪除HTML原生屬性,例如id,style,checked, disabled 或 selected等。這將完全刪除該屬性,并且一旦刪除,就不能再次將其添加到元素中。使用prop()將這些屬性設(shè)置為false。
$(selector).removeProp(property)
在段落上設(shè)置數(shù)字屬性,然后將其刪除:
$(document).ready(function(){ $("p").prop("luggageCode", 1234) $("p").removeProp("luggageCode") });測(cè)試看看?/?
參數(shù) | 描述 |
---|---|
property | 指定要?jiǎng)h除的屬性的名稱 |