假设我有以下...
jQuery('#a').click(function(){
myFunction();
});
function myFunction(){
var me = jQuery(this);// this one gets the "window" object instead of "#a" element
}
myFuncton
当我无法作为参数发送时,如何获取启动事件的目标元素,this
因为它会让我返回并重新检查整个站点并更改每个函数调用参数......