gpt4 book ai didi

javascript - 使用纯 JavaScript 获取点击元素的索引

转载 作者:行者123 更新时间:2023-12-02 22:17:34 24 4
gpt4 key购买 nike

我需要知道单击元素的索引。不知道该怎么做

for (i = 0; i < document.getElementById('my_div').children.length; i++) {
document.getElementById('my_div').children[i].onclick = function(){'ALERT POSITION OF CLICKED CHILD'};
}

这个索引?

这是我正在尝试做的一个示例(它只返回 6):

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Untitled Document</title>
<style type="text/css">
body{margin:0;}
#container div{height:50px;line-height:50px; text-align:center}
</style>
</head>
<body>
<div id="container">
<div>1</div>
<div>2</div>
<div>3</div>
<div>4</div>
<div>5</div>
<div>6</div>
</div>
<script>
for (i = 0; i < document.getElementById('container').children.length; i++) {
document.getElementById('container').children[i].onclick = function(){alert('Number ' + i + ' was clicked')};
}
</script>
</body>
</html>

最佳答案

通过 ES6 解构,你可以做到

const index = [...el.parentElement.children].indexOf(el)

const index = Array.from(el.parentElement.children).indexOf(el)

或ES5版本

var index = Array.prototype.slice.call(el.parentElement.children).indexOf(el)

关于javascript - 使用纯 JavaScript 获取点击元素的索引,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8801787/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com