我需要这样的东西:
$("#id > div, #id > div2").css(...);
我需要使用jQuery将相同的CSS属性应用于两个不同的容器,这两个容器都是同一父级的子容但我不知道是否可能。我试过了,但是没有用;任何想法?
$("#1403171021 > #playArrowAnimation").animate({marginLeft: "+=50%"}, 430, function(){ $('#playArrowAnimation').fadeOut(0, function(){ this.animation = 0; }) });
$("#1403171021 > #playArrow","#1403171021 > #cap").css({'opacity':'0'});
这是jquery代码,必须应用于父容器的两个子容器,ID为1403171021
我无法编写代码,因此它就像:
<span id="1403171021">
//我希望使用jquery选择器访问两个容器
<div id="n2">
</div>
</span>
答案 0 :(得分:0)