码迷,mamicode.com
首页 > 其他好文 > 详细

选择器修改样式

时间:2017-07-29 16:27:03      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:from   move   red   element   元素   删除   append   nbsp   add   

addClass和removeClass

eg:

$("button").addClass("animated bounce");

$(".well").addClass("animated shake");

$("#target3").addClass("animated fadeOut");

$("button").removeClass("btn-default");

 

 

修改css:

$("#target1").css("color","red");

 

修改html元素属性:

$("#target1").prop("disabled",true);

 

修改元素内部的html和文本内容:html和text

$("#target4").html("<em>jQuery Playground</em>");

$("#target3").text("hello target");

 

删除元素:remove

$("#target4").remove();

 

appendTo:

$("#target2").appendTo("#right-well"); //Move your target2 element from yourleft-well to your right-well. 用appendTo会删除原来位置的元素

 

clone():

$("#target5").clone().appendTo("#left-well");//Clone your target5 element and append it to your left-well.clone 会保持原来的元素,在其原来的位置

 

parent():选择父元素

children():选择所有的子元素

 

选择特定的某个元素:

$(".well:nth-child(2)").addClass("animated bounce");

 

选择器修改样式

标签:from   move   red   element   元素   删除   append   nbsp   add   

原文地址:http://www.cnblogs.com/ycherry/p/7255985.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!