-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
36 lines (34 loc) · 1.1 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
function hello(){
let bm= document.getElementsByName(main);
bm.innerHTML="Hello world!";
alert(bm.innerHTML);
}
document.write("Hello world!");
function Pesquisa(seletor, caminho){
let elemetos= document.querySelectorAll(seletor);
if(elemmetos.length ===0){
console.log("nenhum elemento encontrado"+seletor);
return null;
}
for(let i=0; i<caminho.length; i++){
let caminho =caminho[i];
let elementosNoCaminho=[];
}
if (caminho ===""){
elementosNoCaminho=[document];
} else{
for(let j=0; j<elemetos.length; j++){
let elemento = elemetos[j];
let elementosEncontrados= elemento.querySelectorAll(caminho);
}
for(let k=0; k<elementosEncontrados.length; k++){
let elementosEncontrado= elementosEncontrados[k];
elementosNoCaminho.push(elementosEncontrado);
}
if (elementosNoCaminho.length ===0){
console.log("nenhum elemento encontrado"+caminho);
return null;
}elemetos=elementosNoCaminho;
}
return elementos[0]
}