返回文檔中全部圖像的src屬性值。$("img").attr("src");
爲全部圖像設置src和alt屬性。$("img").attr({ src: "test.jpg", alt: "Test Image" });
$("img").attr("src","test.jpg");
$("img").attr("title", function() { return this.src });
removeAttr() 移除屬性
$("img").removeAttr("src");
$("input[type='checkbox']").prop("checked");$("input[type='checkbox']").prop("checked", true);
var $para = $("p"); $para.prop("luggageCode", 1234); $para.append("The secret luggage code is: ", String($para.prop("luggageCode")), ". "); $para.removeProp("luggageCode"); $para.append("Now the secret luggage code is: ", String($para.prop("luggageCode")), ". ");
爲每一個匹配的元素添加指定的類名。一個或多個要添加到元素中的CSS類名,請用空格分開$("p").addClass("selected"); $("p").addClass("selected1 selected2");
一個或多個要刪除的CSS類名,請用空格分開$("p").removeClass("selected");
刪除匹配元素的全部類$("p").removeClass();
html() text() val()$("p").toggleClass("selected");