js 注册事件对象

34 阅读1分钟

 $("#sample_manage").click(function(event){

 console.log(event.target.tagName);

 console.log(event.target.id);

}) ;