Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我不知道如何问这个问题,但这是我的解释:
$(".phone img")
我想要这样的东西。如何仅为电话类中的图像设置动画。这显然不起作用。动画覆盖全班。
您在 $(".phone img") 中所做的是调用任何具有电话类的标签内的所有 img 标签。为了匹配所有具有电话类的图像,它应该是:
$("img.phone")
您可以为图像标签提供类名或 ID。像这样的东西
<div class="phone"> <img class="img_1"/> </div>
然后你可以这样称呼它
$('.phone .img_1').animate();
那应该这样做。