集册 jQuery 参考教程 jQuery removeProp() 方法

jQuery removeProp() 方法

Xebcnor     最近更新时间:2019-10-11 06:01:19

300

jQuery removeProp() 方法

jQuery HTML/CSS 方法 jQuery HTML/CSS 方法

实例

添加并移除名为 "color" 的属性:

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

运行实例

定义和用法

removeProp() 方法移除由 prop() 方法设置的属性。

展开阅读全文