Get event with JQuery how to write source

. $ (. "btn") the Click ( function (E) {
     // E is the event object 
    e.target; // target event dom 
    e.currentTarget; // event handler is processing that element event 
    e.srcElement; // target ie events 
});

 

Guess you like

Origin www.cnblogs.com/nongzihong/p/10978397.html