这两个 jQuery 函数有什么区别?

发布于 2024-11-05 13:08:25 字数 223 浏览 0 评论 0原文

这两个 jQuery 函数有什么区别?
.bind('点击', ... 和 .click( ...

1. $("#div").bind('click', function(event) { });

2. $("#div").click(function() { });

what is the difference between these two jQuery functions?
.bind('click', … and .click( …

1. $("#div").bind('click', function(event) { });

2. $("#div").click(function() { });

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

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

发布评论

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

评论(4

七分※倦醒 2024-11-12 13:08:26

技术上 bind 速度更快,因为少了一次函数调用,但它们在功能上是相同的。另外,如果您不传递函数,.click() 可以用作 .trigger() 的映射:

$('#div').click(); === $('#div').trigger('click');

technically bind is faster since there is one less function call, but they're functionally identical. Also, .click() can be used as a map to .trigger() if you don't pass a function:

$('#div').click(); === $('#div').trigger('click');
想念有你 2024-11-12 13:08:26

这两者之间没有区别。但是,如果您使用

$('#div').live('click', function(ev) { });

它,则会将事件绑定到现在或将来与选择器匹配的任何 DOM 对象。这意味着,如果您使用 AJAX 加载 id 为“div”的 div,则点击处理程序将自动连接到您的新 div。

Between those two, there is no difference. However, if you'd use

$('#div').live('click', function(ev) { });

it would bind the event to any DOM object matching the selector now or in the future. That means, that if you load a div with id "div" using AJAX, the click-handler will automatically be wired up to your new div.

╰◇生如夏花灿烂 2024-11-12 13:08:26

没有什么区别。 click 只是一个调用 bind('click', ...) 的便捷函数。

There is no difference. click is just a convenience function that calls bind('click', ...).

马蹄踏│碎落叶 2024-11-12 13:08:25

没有什么。第二个只是一个捷径。当您尝试侦听没有自己的快捷方式的不太常见的事件时,可以使用bind

Nothing. The second is just a shortcut. bind is used when you're trying to listen to a less common event that doesn't have its own shortcut.

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