如何增强图像脚本上的 MouseOver?
我写了一个小脚本。这是演示: 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您的 HTML 无效 - 这就是 jsfiddle 突出显示您的最后一个
div
标记的原因。确保关闭img
标签,并且关闭锚标签的斜线位于错误的位置。您可以在 jQuery 调用上使用链接。您可能还应该使用
find
,这样您就只能获取当前.a
下面的.b
Your HTML is invalid - that's why jsfiddle highlighted your last
div
tag. Make sure you close yourimg
tag and the closing anchor tag had the slash in the wrong place.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
看一下 jQuery 的 toggle() 方法。
Take a look at jQuery's toggle() method.