标签: javascript jquery html
在我的网页上我有多个列表项,都有onclick监听器。 我需要javascript / jquery代码来查找被点击的元素的id,从而调用了监听器。
答案 0 :(得分:2)
这将为您提供所点击的ID。
$('li').click(function(){ alert( this.id ); });
答案 1 :(得分:0)
只需要使用此关键字
this.id;