jQuery attr() 方法用于设置或获取被选元素的属性和值。

jQuery attr() 方法有两种用法。

  • 获取属性值:该方法返回第一个匹配元素的值。
  • 设置属性值:该方法用于设置一组匹配元素的一个或多个属性/值对。

语法

//获取属性值
$(selector).attr(attribute)
//设置属性值
$(selector).attr(attribute,value)
使用函数设置属性和值
//设置属性值
$(selector).attr(attribute,function(index,currentvalue))
设置多个属性和值
$(selector).attr({attribute:value, attribute:value,...}) 

参数

参数说明
attribute该参数用于指定属性的名称。
value该参数用于指定属性的值。
function (index, currentvalue)

它是一个参数,用于指定返回要设置的属性值的函数。

  • index:用于接收集合中元素的索引位置。
  • currentvalue:用于提供被选元素的当前属性值。

示例

设置图片宽度的例子

<!DOCTYPE html>
<html>
<head>
<script src="https://code.jquery.com/jquery-1.11.2.min.js"></script>
<script>
$(document).ready(function(){
    $("button").click(function(){
        $("img").attr("width", "500");
    });
});
</script>
</head>
<body>
<img src="/static/default/yxjc/jquery/good-morning.jpg" alt=""width="284" height="213"><br>
<button>设置图片的宽度属性</button>
</body>

</html>