屬性
1.屬性
1.1 attr(name|PRoperties|key,value|key,fn)
1) 取得屬性值 $("img"). $( "img").attr("title","你好");$("img").attr({src:"img1.png",alt:"img1"})
3) 設定屬性值 $( "img").attr("alt",function(index,value){return value + index}) //index為目前元素的索引,value為"alt"原先的屬性值
1.2 removeAttr(name)
一個屬性 $("img").removeAttr("alt");
1.3 prop(name|properties|key,value|key,fn)
checked", true);
$("input[type='checkbox']").prop("checked", function( i, val ) { re調查 用來刪除由.prop()方法設定的屬性集
1.5 attr() 與prop() 的區別
1.5 attr() 與prop() 的區別
1.5 attr() 與prop() 的區別
具有true 和false 兩個屬性的屬性,如checked, selecteddisabled 使用propatt),其他使用propatt()
2.CSS類別
2.1 addclass(class|fn)
$("p").addClasss("active focus");
i})
2.2 removeClass([name|fn])
$("p").removeClass("active");
att" $("p. "class")})
2.3 toggleClass(class|fn)
$("p").toggleClass("active");
if($(this ).parent().is(".myClass"))
{
return "classone";
}
else
{
return "classtwo";
}
})
3.HTML代碼|文本|值
3.1 html([val|fn])
取得內容 $("div").html() 取得第一個符合元素的html內容
以上就是jQuery屬性與CSS操作的內容,更多相關文章請關注PHP中文網(www.php.cn)!