gpt4 book ai didi

javascript - 多个 html 部分,检查我在哪个部分

转载 作者:行者123 更新时间:2023-12-03 00:44:58 24 4
gpt4 key购买 nike

我有 2 个 HTML 部分,它们都有相同的 id(不在我手中,第三方 cms)

我当前正在运行一些简单的代码来查看有多少个具有此 ID 的 html 部分。

如何设置我单击的获取数组对象?

我的js查看有多少个具有相同ID的部分

所以我想要一种可以 console.log(arrayItem) 并查看我单击的数组对象的方法。

var elms = document.querySelectorAll("[id='sectorpage-strengths']");

for(var i = 0; i < elms.length; i++)

console.log(elms);
console.log(elms[i]);

最佳答案

您可以尝试类似的操作并获取 this 对象

$('[id="sectorpage-strengths"]').click(function(){

var obj = $(this).text();

console.log("Click Event Triggered By " + obj);

});
section{
border: solid 1px red;
width: 100px;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<section id="sectorpage-strengths">Section 1</section>
<section id="sectorpage-strengths">Section 2</section>

关于javascript - 多个 html 部分,检查我在哪个部分,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53284970/

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