JavaScript在ul中查找li索引 [英] JavaScript find li index within ul

查看:41
本文介绍了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();
    })
});

这篇关于JavaScript在ul中查找li索引的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆