jQuery .hover 脚本
我对 jQuery 还很陌生,这是我对这个 网站 的问题。
正如你所看到的,右边有一些小图片。我用 HOVER 编写了一个非常简单的脚本,以便在鼠标悬停时更改元素的不透明度。但是,直到我在 Firebug 中对该脚本进行了一些小的更改(例如,只需在脚本的任何行中按空格键,它就会变为活动状态)时,这才起作用。然后就可以了!我对此完全困惑。
如果有人可以帮助我,我可以使用另一个脚本来纠正相同的问题,该脚本会在您移动时更改这些小图片的位置。
我正在寻找任何可以完成我想要的事情的解决方案。
谢谢 现在再见了。
I am pretty new to jQuery and here is my problem with this website.
As you see, There is a some small pictures in the right. I wrote a very simple script with HOVER in order to change the opacity of the element when mouse over. But this doesn't work until I do a small change in that script in Firebug (e.g. just by press space in any line of script it becomes active). and then it works! I completely confused by this.
If anyone can help me through, I can correct the same problem with another script that change the position of those small pictures as you move over.
I am searching for any solution that can do the same thing as I want.
Thank you
and goodbye presently.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要将对 .hover() 的调用包装在 $(document).ready() 调用中,就像在其他一些脚本节点中一样,因为执行这些调用时图像尚未加载到页面中。例如,这个:
应该是这样:
希望有帮助。
You need to wrap your calls to .hover() in $(document).ready() calls like you have in some of your other script nodes because the images are not loaded in the page yet when those calls are executed. For example, this:
should be this:
Hope that helps.