jquery的attr()方法

一、定义和用法

attr() 方法设置或返回被选元素的属性和值。

当该方法用于返回属性值,则返回第一个匹配元素的值。

当该方法用于设置属性值,则为匹配元素设置一个或多个属性/值对。

二、语法

返回属性的值: $(selector).attr(attribute)

设置属性和值: $(selector).attr(attribute,value)

使用函数设置属性和值: $(selector).attr(attribute,function(index,currentvalue))

设置多个属性和值: $(selector).attr({attribute:valueattribute:value,...})

attribute-----规定属性的名称。

value-----规定属性的值。

function(index,currentvalue)----

      规定要返回属性值到集合的函数

  • index - 接受集合中元素的 index 位置。
  • currentvalue - 接受被选元素的当前属性值。
上一篇:java.lang.NoClassDefFoundError: org/apache/juli/logging/LogFactory


下一篇:在 Windows 7 環境安裝 Python 2.6.6