0

如果我有一个附加到 li 元素的 onClick 侦听器,那么如果该 li 有多个不同类型的子元素,那么在侦听器中,我可以通过检查 event.target.tagName 或 event.target 来判断单击发生的元素类型。节点名。

但是如果有两个具有相同标签名的孩子,例如两个图像呢?是否可以确定事件与哪一个相关联?

4

1 回答 1

0

event.target is the same object you can get with document.getElementById. So, you can do all the same things with it. Take an id, name, class or any other attribute which may help you to find out which element is clicked.

于 2012-09-04T22:26:14.457 回答