gpt4 book ai didi

javascript - 遍历 HTML 结构搜索属性

转载 作者:行者123 更新时间:2023-11-29 15:29:23 26 4
gpt4 key购买 nike

我有一个 traverse 对象包含两个方法 up()down(),这些方法的目标是向上循环或通过 html 向下查找特定 dataset-attribute 的第一次出现,如果找到则返回该元素。

“特定的”dataset-attribute 作为参数传递到方法中,例如我们有 data-updata-down

var o1 = traverse.up(e.target,'up');
var o2 = traverse.down(e.target,'down');

现在向上遍历方法 traverse.up(e.target,'up') 工作正常,因为 parentNode 与单击的元素 (e.target) 是一对一的关系我的问题是,当尝试向下遍历时,因为单击的元素 (e.target) 可能有多个子元素,我需要遍历每个子元素及其子元素等...搜索 dataset-down 属性。

问题:为什么我的 traverse.down(e.target,'down') 方法不返回第一次出现的带有 的 HTML 元素dataset-down 属性?

这是 JSFiddle演示

//HTML

<body>
<div id='black'>
<div id='red' data-up='upwards'>
<div id='blue'>
<div id='green'>
<div id='yellow'></div>
<div id='royalblue' data-down='downwards'></div>
<div id='fuscia'></div>
</div>
</div>
</div>
</div>
</body>

//JS

function init(){
document.getElementById('black').addEventListener('click', handles);
}
function handles(e){
// var o1 = traverse.up(e.target,'up');
var o2 = traverse.down(e.target,'down');
console.log(o2);
}
traverse={
up:function(o,a){
while(o.dataset[a] === undefined){
if(o.parentNode.tagName === 'HTML') break;
o = o.parentNode;
}
return o;
},
down:function(o,a){
if(o.dataset[a] === undefined){
if(o.children.length > 0){
o.children.forEach((o)=>{
traverse.down(o,a);
})
}
else console.log("DOES NOT HAVE CHILD");
}
else{
//console.log(o) **this does return the correct element with the data-down attribute however the return statement below isn't returning it back to the original caller.
return o;
}
}
};
NodeList.prototype.forEach = HTMLCollection.prototype.forEach = Array.prototype.forEach;
document.onreadystatechange=()=>(document.readyState === 'interactive') ? init() : null;

最佳答案

像这样:

if(o.children.length > 0){
o.children.forEach((o)=>{
var t = traverse.down(o,a);
if (t) return t; // return the first element that matches. There might be more but we're ignoring them
});
// none were found
return false;
}

关于javascript - 遍历 HTML 结构搜索属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36242415/

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