如何增强图像脚本上的 MouseOver?

发布于 2024-12-02 18:13:12 字数 189 浏览 1 评论 0原文

我写了一个小脚本。这是演示: http://jsfiddle.net/kolxoznik1/MfLuU/3/

一切效果很好,但我需要优化它,因为在我看来,代码没有按应有的方式编写。喜欢听听有什么可以改进的地方。

I have written a small script. Here is the demo : http://jsfiddle.net/kolxoznik1/MfLuU/3/

Everything works good, but I need to optimize it because in my opinion code isn't written as it should be. Like to hear what can be improved.

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

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

发布评论

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

评论(2

断肠人 2024-12-09 18:13:12

您的 HTML 无效 - 这就是 jsfiddle 突出显示您的最后一个 div 标记的原因。确保关闭 img 标签,并且关闭锚标签的斜线位于错误的位置。

<a href="#"><img src="http://i.cdn.turner.com/cnn/2011/WORLD/europe/09/04/france.strauss.kahn.arrival/c1main.strauss.kahn.paris.jpg" alt="" title="" class="medium_photo right"/></a>

您可以在 jQuery 调用上使用链接。您可能还应该使用 find,这样您就只能获取当前 .a 下面的 .b

$(".a").mouseover(function() {
    $(this).find('.b').show();
}).mouseout(function() {
    $(this).find('.b').hide();
});

Your HTML is invalid - that's why jsfiddle highlighted your last div tag. Make sure you close your img tag and the closing anchor tag had the slash in the wrong place.

<a href="#"><img src="http://i.cdn.turner.com/cnn/2011/WORLD/europe/09/04/france.strauss.kahn.arrival/c1main.strauss.kahn.paris.jpg" alt="" title="" class="medium_photo right"/></a>

You can use chaining on your jQuery calls. You should probably also use find so you only get the .b that is underneath the current .a

$(".a").mouseover(function() {
    $(this).find('.b').show();
}).mouseout(function() {
    $(this).find('.b').hide();
});
泅人 2024-12-09 18:13:12

看一下 jQuery 的 toggle() 方法。

Take a look at jQuery's toggle() method.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文