jQuery 修改元素屬性- attr
jQuery的attr很好用也很常用到,列一下基礎會用到的方法。
1. 獲取屬性的值attr(name)
2. 修改屬性attr(name,value)
3. 一次修改多個屬性attr(properties)
4. 用function變更屬性的值 attr(key, function(index, attr))
這個會把所有的src的值套到title去
5. 移除屬性removeAttr(name)
1. 獲取屬性的值attr(name)
- $("img").attr("src");
2. 修改屬性attr(name,value)
- $("img").attr("src","test.jpg");
3. 一次修改多個屬性attr(properties)
- $("img").attr({ src: "test.jpg", alt: "Test Image" });
4. 用function變更屬性的值 attr(key, function(index, attr))
- $("img").attr("title", function() { return this.src });
5. 移除屬性removeAttr(name)
- $("img").removeAttr("src");
留言