下面的代码有区别吗?
$('#whatever').on('click', function() {
/* your code here */
});
and
$('#whatever').click(function() {
/* your code here */
});
下面的代码有区别吗?
$('#whatever').on('click', function() {
/* your code here */
});
and
$('#whatever').click(function() {
/* your code here */
});
当前回答
我认为,区别在于使用模式。
我更喜欢.on而不是.click,因为前者可以使用更少的内存,并为动态添加的元素工作。
考虑下面的html:
<html>
<button id="add">Add new</button>
<div id="container">
<button class="alert">alert!</button>
</div>
</html>
我们在哪里添加新按钮
$("button#add").click(function() {
var html = "<button class='alert'>Alert!</button>";
$("button.alert:last").parent().append(html);
});
并想要“警报!”来显示警报。我们可以用"click"或"on"来表示。
当我们使用点击
$("button.alert").click(function() {
alert(1);
});
使用上述方法,将为每个匹配选择器的元素创建单独的处理程序。这意味着
许多匹配的元素将创建许多相同的处理程序,从而增加内存占用 动态添加的项目不会有处理程序——例如,在上面的html中,新添加的“Alert!”按钮将不起作用,除非你重新绑定处理程序。
当我们使用。on
$("div#container").on('click', 'button.alert', function() {
alert(1);
});
使用上述方法,所有匹配选择器的元素都有一个处理程序,包括动态创建的元素。
...使用.on的另一个原因
正如Adrien在下面评论的那样,使用.on的另一个原因是名称空间事件。
如果你添加了一个带有。on("click",处理程序)的处理程序,你通常会使用。off("click",处理程序)删除它,这将删除该处理程序。显然,只有当您有对函数的引用时,这才有效,那么如果没有呢?你可以使用命名空间:
$("#element").on("click.someNamespace", function() { console.log("anonymous!"); });
通过解绑定
$("#element").off("click.someNamespace");
其他回答
不,没有。 on()的重点是它的其他重载,以及处理没有快捷方法的事件的能力。
从互联网和一些朋友那里了解到,.on()用于动态添加元素。但是当我在一个简单的登录页面中使用它时,点击事件应该发送AJAX到node.js,并返回追加新元素,它开始调用多AJAX调用。当我把它改成click()时,一切都很顺利。其实我以前没有遇到过这个问题。
在这里,您将获得应用点击事件的不同方式的列表。你可以选择相应的,如果你的点击不工作,只是尝试一个替代这些。
$('.clickHere').click(function(){
// this is flat click. this event will be attatched
//to element if element is available in
//dom at the time when JS loaded.
// do your stuff
});
$('.clickHere').on('click', function(){
// same as first one
// do your stuff
})
$(document).on('click', '.clickHere', function(){
// this is diffrent type
// of click. The click will be registered on document when JS
// loaded and will delegate to the '.clickHere ' element. This is
// called event delegation
// do your stuff
});
$('body').on('click', '.clickHere', function(){
// This is same as 3rd
// point. Here we used body instead of document/
// do your stuff
});
$('.clickHere').off().on('click', function(){ //
// deregister event listener if any and register the event again. This
// prevents the duplicate event resistration on same element.
// do your stuff
})
$('.UPDATE').click(function(){ }); **V/S**
$(document).on('click','.UPDATE',function(){ });
$(document).on('click','.UPDATE',function(){ });
它比$('.UPDATE').click(function(){})更有效; 它可以使用更少的内存,并为动态添加的元素工作。 有时动态获取的数据与编辑和删除按钮不生成JQuery事件时,编辑或删除数据行数据的表单,该时间$(document).on('click','.UPDATE',function(){});是有效的工作,就像相同的获取数据使用jquery。更新或删除时按钮不工作:
我认为,区别在于使用模式。
我更喜欢.on而不是.click,因为前者可以使用更少的内存,并为动态添加的元素工作。
考虑下面的html:
<html>
<button id="add">Add new</button>
<div id="container">
<button class="alert">alert!</button>
</div>
</html>
我们在哪里添加新按钮
$("button#add").click(function() {
var html = "<button class='alert'>Alert!</button>";
$("button.alert:last").parent().append(html);
});
并想要“警报!”来显示警报。我们可以用"click"或"on"来表示。
当我们使用点击
$("button.alert").click(function() {
alert(1);
});
使用上述方法,将为每个匹配选择器的元素创建单独的处理程序。这意味着
许多匹配的元素将创建许多相同的处理程序,从而增加内存占用 动态添加的项目不会有处理程序——例如,在上面的html中,新添加的“Alert!”按钮将不起作用,除非你重新绑定处理程序。
当我们使用。on
$("div#container").on('click', 'button.alert', function() {
alert(1);
});
使用上述方法,所有匹配选择器的元素都有一个处理程序,包括动态创建的元素。
...使用.on的另一个原因
正如Adrien在下面评论的那样,使用.on的另一个原因是名称空间事件。
如果你添加了一个带有。on("click",处理程序)的处理程序,你通常会使用。off("click",处理程序)删除它,这将删除该处理程序。显然,只有当您有对函数的引用时,这才有效,那么如果没有呢?你可以使用命名空间:
$("#element").on("click.someNamespace", function() { console.log("anonymous!"); });
通过解绑定
$("#element").off("click.someNamespace");