2

我有一个点击事件的事件处理程序。事件处理程序是命名函数而不是匿名函数。如何将事件对象传递给这个命名函数?

// usual example
$(".sel").click(function(ev) {
  // do stuff which involves the event
});

// my case
$(".sel").click(myHandler);

function myHandler() {
  // hopefully do stuff which involves the event
}
4

1 回答 1

1

事件默认作为参数传递给事件处理函数

function myHandler(evt) {
    // You can use event object here
}
于 2013-07-21T01:41:29.443 回答