jQuery prop() 方法

定义和用法

prop() 方法设置或返回被选元素的属性和值。
当该方法用于返回属性值时,则返回第一个匹配元素的值。
当该方法用于设置属性值时,则为匹配元素集合设置一个或多个属性/值对。

注意:

prop() 方法应该用于检索属性值,例如 DOM 属性(如 selectedIndex, tagName, nodeName, nodeType, ownerDocument, defaultChecked, 和 defaultSelected)。
提示:如需检索 HTML 属性,请使用
attr()
方法,移除HTML 属性,请使用 removeAttr()方法。
提示:如需移除属性,请使用 removeProp()方法。

语法

返回属性的值:
$(selector).prop(property)
设置属性和值:
$(selector).prop(property,value)
使用函数设置属性和值:
$(selector).prop(property,function(index,currentvalue))
设置多个属性和值:
$(selector).prop({property:value, property:value,...})

property
规定属性的名称。
value
规定属性的值。
function(index,currentvalue)
规定返回要设置的属性值的函数。index - 检索集合中元素的 index 位置。
currentvalue - 检索被选元素的当前属性值。

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

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

你可能感兴趣的:(jQuery prop() 方法)