js页面onclick点击获取标签内容
自动生成元素的onclick事件event.target返回触发事件的元素event.currentTarget返回绑定事件的元素<a onclick="test()">点击我</a><script> function test(){ var is=event.currentTarget; console.log($(is)); //获取当前元素,类同this cons