<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<div id="box" class="box"></div>
<div class="box">2</div>
</body>
<script>
const box1 = document.getElementById("box");
console.log("box1:", box1);
const box2 = document.getElementsByTagName("div");
console.log("box2:", box2);
const box3 = document.getElementsByClassName("box");
console.log("box3:", box3);
const box4 = document.querySelector(".box");
console.log("box4:", box4);
const box5 = document.querySelectorAll(".box");
console.log("box5:", box5);
console.log("document.body:", document.body);
console.log("document.documentElement:", document.documentElement);
</script>
</html>
文章來(lái)源:http://www.zghlxwxcb.cn/news/detail-676822.html
?文章來(lái)源地址http://www.zghlxwxcb.cn/news/detail-676822.html
到了這里,關(guān)于JS 獲取 HTML DOM 元素的方法的文章就介紹完了。如果您還想了解更多內(nèi)容,請(qǐng)?jiān)谟疑辖撬阉鱐OY模板網(wǎng)以前的文章或繼續(xù)瀏覽下面的相關(guān)文章,希望大家以后多多支持TOY模板網(wǎng)!