假设我有3个li。我想要做的是当我点击任何li然后我想知道点击了哪个li并根据它添加一个事件。如何使用jquery,任何帮助或建议,
答案 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());
});
您需要提供您需要的html标记。
更多读物: