将类更改为div中的所有图像 - jQuery

时间:2014-02-18 17:05:04

标签: javascript jquery html css

我将jQuery插件包含在名为SuperSlides的项目中,但它会自动将幻灯片中的每个图像调整为“背景”。这可以通过将类'.preserve'添加到图像来防止。我想将这个类添加到div中的每个图像(#container)。任何人都可以帮我这个脚本吗?

2 个答案:

答案 0 :(得分:4)

$("#container img").addClass("preserve")

答案 1 :(得分:1)

<强> LIVE EXAMPLE HERE >>

 $(function(){
   $('#container img').addClass("preserve");
 });