JavaScript在ul中查找li索引
我正在尝试在Javascript中按id查找列表项的索引。例如,我有5个项目的列表,给出一个元素,我想知道它在列表中的位置。以下是我希望构建的代码。
它使用onclick处理程序来查找元素,这是有效的,然后我只需要以某种方式找出元素在列表"squareList"中的位置。
window.onload=function(){
function getEventTarget(e){
var e=e || window.event;
return e.target || e.srcElement;
}
function selectFunction(e){
var target=getEventTarget(e);
alert(target.id);
}
var squareList=document.getElementById('squareList');
squareList.onclick=function(e){
selectFunction(e);
}
}
解决方案
若要获取索引,您可以执行以下操作:
Array.prototype.indexOf.call(squareList.childNodes, target)
和jQuery,因为您已经在使用跨浏览器解决方案:
$(document).ready(function() {
$('#squareList li').click(function() {
var index = $(this).index();
})
});
相关文章