最新的Web開發教程
 

jQuery removeProp() Method

<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屬性般的風格,ID或檢查。使用removeAttr()方法來代替。


句法

$(selector).removeProp(property)

參數 描述
property 指定要刪除的屬性的名稱

<jQuery的HTML / CSS方法