如何在 jQuery 中实现特殊事件?
我正在使用这个 插件
< /a> 将 jQuery 的 imgload
事件替换为无论图像是否被缓存都会触发的事件。
(最小)文档说要这样使用它:
<前><代码>用法: $(images).bind('加载', 函数 (e) { // 在加载时做一些事情 });
那么,有两个问题。一,我是否只需将插件链接到 jQuery 旁边的标头中?第二,是我的实现
$('#preload img:first-child').load(activateThumb);
相当于上面的(即我需要将 e
传递给 load()
函数吗?
I'm using this plugin
to replace jQuery's imgload
event with one that will fire regardless of whether the image is cached.
The (minimal) documentation says to use it thus:
Usage: $(images).bind('load', function (e) { // Do stuff on load });
So, two questions. One, do I just link to the plugin into my header next to jQuery? And two, is my implementation
$('#preload img:first-child').load(activateThumb);
Equivalent to the one above (ie do I need to pass e
to the load()
function?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我是否只需将插件链接到 jQuery 旁边的标头中?
- 是与上面的等效(即我需要将 e 传递给 load() 函数吗?
- 这取决于你 - 如果你在处理程序中不需要它 - 不需要将e
传递给它,但我认为你仍然应该使用bind
函数,因为我没有看到该插件添加load
方法来添加事件处理程序do I just link to the plugin into my header next to jQuery?
- YesEquivalent to the one above (ie do I need to pass e to the load() function?
- it's up to you - if you don't need it in your handler - no need to passe
into it, but I think you should still usebind
function, since I don't see that plugin addingload
method to add event handler