jquery隐藏所有图像但不隐藏第一个

发布于 2024-10-20 18:16:40 字数 302 浏览 3 评论 0原文

大家好,我正在尝试制作此幻灯片效果 http://tinyurl.com/628z32d

但我对 jquery 很陌生,所以我需要一些帮助: ),我怎样才能隐藏#big-mage div中的所有大图像并隐藏它们?然后只显示第一个。

你们有一个简单易懂的幻灯片效果教程吗?我很高兴:)

谢谢!

这就是我所拥有的 http://jsfiddle.net/bF9xy/

Hello all im trying to make this slide effect http://tinyurl.com/628z32d

but im new to jquery so i need a little help :), how can i hide all the big image in the #big-mage div and hide them? and then only show the first.

do you guys have a good simple to understand slide effect tutorial i will be glad to :)

Thanks!

this is what i have http://jsfiddle.net/bF9xy/

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

野味少女 2024-10-27 18:16:40

尝试这样:

$("div img").hide().filter(":first-child").show();

或使用 $.not() 过滤掉不需要的元素:

$("img").not("img.class-not-to-select").hide();

Try like this:

$("div img").hide().filter(":first-child").show();

or use the $.not() to filter out unwanted elements:

$("img").not("img.class-not-to-select").hide();
梦开始←不甜 2024-10-27 18:16:40

试试这个代码:

$("img:gt(0)").hide();

try this code:

$("img:gt(0)").hide();
赏烟花じ飞满天 2024-10-27 18:16:40
$("div#big-mage img:not(:first)").hide();
$("div#big-mage img:not(:first)").hide();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文