当前位置:  开发笔记 > 前端 > 正文

功能(e)和功能()之间的区别

如何解决《功能(e)和功能()之间的区别》经验,为你挑选了1个好方法。

以下代码之间的重要/区别是什么?(e)最后

jQuery(document).on( 'click', '.something', function(e) {

vs.

jQuery(document).on( 'click', '.something', function() {

谢谢!



1> DinoMyte..:

两种表达在技术上没有区别.'e'指的是事件变量,它是可选的,更像是this表达式jquery.您可以使用该e变量来确定某些信息,例如调用事件的目标或任何其他属性.

jQuery(document).on( 'click', '.something', function() {
  alert(this.id); // gives you the id of the element using this
}); 

jQuery(document).on( 'click', '.something', function(e) {
   alert(e.target.id); // gives you the id of the element using event
});

在我看来,使用该事件的最大优点e是,与通过this调用事件处理程序时相比,它提供了更多正确的信息document.

$(document).on('click',function()
{
  alert($(this).attr("id")); // id as undefined
})

$(document).on('click',function(e)
{
  alert(e.target.id); // gets the correct id
})

示例:http://jsfiddle.net/twjwuq92/

推荐阅读
携手相约幸福
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有