我通常会在HTML文档的正文中添加一个类,如下所示:
document.body.classList.toggle('darkClass', this.props.isDark)
但我不确定如何获得整个html
元素。
如何在Javascript中引用它?
var html = ?
html.classList.toggle(...)
答案 0 :(得分:5)
您可以使用document.documentElement获取整个html
元素。还可以看到它的innerHTML
属性。
console.log(document.documentElement);

<html>
<head>
</head>
<body>
<div>TEST</div>
</body>
</html>
&#13;