是否可以检测 jQuery 单击事件是否已被实际单击或触发器调用?
我有一些与单击事件绑定的功能:
$('.addButton').live('click', function(){
//stuff here...
});
有时该函数是通过实际的按钮单击调用的,有时使用 trigger()
。有没有办法检测使用了哪种方法?
谢谢!
I have some functionality which is bound to a click event:
$('.addButton').live('click', function(){
//stuff here...
});
Sometimes the function is called by an actual button click, and sometimes using trigger()
. Is there a way to detect which method has been used?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
请参阅:http://api.jquery.com/category/events/event-object /
请参阅此处的示例:http://jsfiddle.net/expertCode/d5SW2/
See this: http://api.jquery.com/category/events/event-object/
See example here: http://jsfiddle.net/expertCode/d5SW2/
我相信您可以将另一个包含 eventData 的参数传递给 .live
是否可以使用它来包含有关被调用者如何进行调用的指示符?
I believe you can pass another argument to .live that contains eventData
Would it be possible to use this to contain an indicator as to how the callee made the call?
简短回答:是的。
当然,如果你愿意的话,你可以模仿。但默认情况下它不存在。
Short answer: Yes.
Of course you can emulate that, if you want. But it's not there by default.
您可以向触发函数添加额外的参数,并使用 来区分可能的来源...
You can add extra parameters to the trigger function and use the to distinguish the possible sources...