如何在 jQuery 中实现特殊事件?

发布于 2024-09-14 16:28:07 字数 550 浏览 3 评论 0原文

我正在使用这个 插件< /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 技术交流群。

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

发布评论

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

评论(1

不打扰别人 2024-09-21 16:28:07

我是否只需将插件链接到 jQuery 旁边的标头中? - 是

与上面的等效(即我需要将 e 传递给 load() 函数吗? - 这取决于你 - 如果你在处理程序中不需要它 - 不需要将 e 传递给它,但我认为你仍然应该使用 bind 函数,因为我没有看到该插件添加 load 方法来添加事件处理程序

do I just link to the plugin into my header next to jQuery? - Yes

Equivalent 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 pass e into it, but I think you should still use bind function, since I don't see that plugin adding load method to add event handler

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