标签:color sp bs nbsp 方法 jquery css 标签 元素
为标签id=id1及其之后的所有标签加上背景色:
方法1:$("#id1").nextAll().css("background-color","red").end().css("background-color","red");
方法2:$("#id1").nextAll().andSelf().css("background-color","red");//推荐这个
注意:end(),andSelf()的作用
$("#id1").nextAll().andSelf().end().end()css("background-color","red");//仅id=id1的元素变色
end()返回上一次包装集被破坏之前的状态
andSelf()并且加入自己
标签:color sp bs nbsp 方法 jquery css 标签 元素
原文地址:http://www.cnblogs.com/lxboy2009/p/4134903.html