属性的格式如下:
$.fn.attr
该格式既可以获取属性的值也可以设置属性的值。示例如下:
设置属性
1 // Setting attributes2 $("a").attr( "href", "allMyHrefsAreTheSameNow.html" );3 $("a").attr({4 title: "all titles are the same too!",5 href: "somethingNew.html"6 });
获取属性
1 // Getting attributes2 $("a").attr("href"); // returns the href for the first a element in the document