jQuery常用API
2972 ワード
$(document).ready(function(){
});
jQueryはセレクタで要素を選択し、要素を操作して変更します.
$("button")
.addClass("animated bounce") CSS class。
$(document).ready(function() {
$("button").addClass("animated bounce");
});
$(".well").addClass("animated shake");
$("#target3").addClass("animated fadeOut");
$("button")
$(".btn")
$("#target1")
$("#target2").removeClass("btn-default");
$("#target1").css("color","red");
$("#target1").prop("disabled",true);
[emphasize]ラベルタイトルテキスト.text()
テキストのみ変更できますが、タグ$("#target4").html("#target4");
$(#target4).remove();
$("#target2").appendTo("#right-well");
$("#target5").clone().appendTo("#left-well");
$("#target1").parent().css("background-color","red");
$("#right-well").children().css("color","orange");
:nth-child()
逐次インデックスは1からの$(".target:nth-child(2)").addClass("animated bounce")
; $(".target:even").addClass("animated shake");
$(".target:odd").addClass("animated shake");
$("body").addClass("animated hinge");
$("body").addClass("animated fadeOut");