我有一个简单的输入元素:
<input class="a" /> // <---notice - no inline onclick function
有人在做
$(".a").on('click',function () {alert('1')});
// ...and later
$(".a").on('click',function () {alert('2')});
现在,我想查找:“单击元素时执行了哪些功能”?
我怎样才能在 Jquery/Javascript 中做到这一点?
ps 请忽略这里的匿名函数,我也可以附上一个常规的命名函数。
(我正在使用(如 jsbin 所示,使用 1.8.3 - 最新版本))