$("#target1").css("color", "red"); //添加css
$("#target1").prop("disabled", true); //禁用元素
$("#target4").remove(); //移除元素
$("#target2").appendTo("#right-well"); //从left-well移动到#right-well
$("#target5").clone().appendTo("#left-well"); //复制target5元素并将其附加到left-well
$("#target1").parent().css("background-color", "red"); //设定#target1元素的父元素的背景色为红色
$("#right-well").children().css("color", "orange"); //设置#right-well元素的所有子元素的文本颜色为orange);
$(".target:nth-child(2)").addClass("animated bounce"); //每个class为target中的第二个子元素添加bounce类,使用target类来获取目标元素的子元素。
$(".target:odd").addClass("shake"); //选择所有的奇数元素(索引为1、3、5……),并给它们添加shake。
$(".target:even").addClass("animated shake"); //选择所有的偶数元素(索引为0、2、4……),并给它们添加animated和shake。
$("body").addClass("animated hinge"); //给body元素添加animated 和hingeclass。
网友评论