【Web APIs】DOM 文档对象模型 ⑤ ( 获取特殊元素 | 获取 html 元素 | 获取 body 元素 )
// 获取特殊元素(例如 document 本身)
function getSpecialElement(element) {
if (element === 'document') {
return document;
}
// 如果 element 不是 'document',则返回 null
return null;
}
// 获取 HTML 元素
function getHTMLElement(id) {
return document.getElementById(id);
}
// 获取 BODY 元素
function getBodyElement() {
return document.body;
}
// 示例使用
console.log(getSpecialElement('document')); // 输出:[object HTMLDocument]
console.log(getHTMLElement('header')); // 假设有一个 id 为 'header' 的元素,输出:[object HTMLDivElement] 或 null
console.log(getBodyElement()); // 输出:[object HTMLBodyElement]
这段代码展示了如何使用 JavaScript 获取特殊的 document
对象,以及如何通过 ID 获取 HTML 元素和 BODY 元素。在实际开发中,这些函数可以用来操作 DOM 元素。
评论已关闭