如何实现“观察者”在没有插件的 Jquery 中?

发布于 2024-10-14 18:40:25 字数 211 浏览 1 评论 0原文

我需要 http://www.prototypejs.org/api/event/observe 在 Jquery 中? 也有“频率”吗?

我需要一张 cakephp 的门票。

谢谢, 塞尔索。

I need a implementation of http://www.prototypejs.org/api/event/observe in Jquery?
With "frequency" too?

I need to a ticket for cakephp.

Thanks,
Celso.

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

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

发布评论

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

评论(2

只想待在家 2024-10-21 18:40:25

原型 observe 相当于 jquery bind

因此,prototype: 中的类似内容

$('myElement').observe('click', function(){...});

与 jquery: 中的类似:

$('#myElement').bind('click', function(){...});

库中的实际实现不同,但这将提供类似的结果。另外,在 jquery 中,您不必在处理程序的末尾附加一个 bind() 函数,因为 jquery 会自动绑定范围。

Prototype observe is equivalent to jquery bind

so something like this in prototype:

$('myElement').observe('click', function(){...});

would be equivalent to this in jquery:

$('#myElement').bind('click', function(){...});

The actual implementation in the library is different, but this will provide a similar result. Also, in jquery you won't have to attach a bind() function on the end of your handler as jquery binds the scope automatically.

原谅我要高飞 2024-10-21 18:40:25

除此之外,

$('#myElement').bind('click', function(){...});

还要看看

$(document).on('click', '#myElement', function(){...}); # jquery >= 1.7

哪个将 click 事件绑定到所有当前甚至未来的元素 - 如果您希望多个对象对点击做出反应或动态添加,则特别有用。有关更详细的说明,请参阅 http://api.jquery.com/on/

in addition to

$('#myElement').bind('click', function(){...});

also take a look at

$(document).on('click', '#myElement', function(){...}); # jquery >= 1.7

which binds a click event to all present and even future elements - especially usefull if you want multiple objects to react on clicks or which are added dynamically. See http://api.jquery.com/on/ for a more detailed explanation.

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