使用event.target获取相应的元素。
我可以从那里使用什么属性?
> href> id> nodeName
我找不到很多信息,甚至在jQuery页,所以这里是希望有人可以完成上面的列表。
编辑:
这些可能有帮助:selfHTML node properties和selfHTML HTML properties
然而,在一个事件处理程序中,你可以使用这个,它也设置为DOM元素;更容易。
$('foo').bind('click',function () { // inside here,`this` will refer to the foo that was clicked });