找到被点击的李

时间:2010-08-09 07:15:35

标签: javascript jquery find html-lists

假设我有3个li。我想要做的是当我点击任何li然后我想知道点击了哪个li并根据它添加一个事件。如何使用jquery,任何帮助或建议,

2 个答案:

答案 0 :(得分:3)

在jQuery中,在事件处理程序中 this 关键字引用触发事件的元素。

$('li').click(function() {
  alert($(this).text()); // read out the text of the list item that was clicked
}

答案 1 :(得分:2)

jQuery将自动捕获您在包装集中指定的单击元素:

$('ul li').click(function(){
  alert('I was clicked, my text is: ' + $(this).text());
});

See the example here.

您需要提供您需要的html标记。

更多读物: