我已通过样式表将font-size:
样式应用于html
标记。我想在javascript中检索它。
我尝试过document.getElementsByTagName("html")[0].style
并最终检索没有值的样式。
答案 0 :(得分:1)
html
元素可由document.documentElement
引用请尝试以下操作:
var elem = window.getComputedStyle(document.documentElement);
var fontSize = elem.fontSize;
console.log(fontSize);
html{
font-size: 20px;
}
<html>
<head>
</head>
<body>
</body>
</html>
答案 1 :(得分:0)
请尝试以下方法:
let elem = document.getElementsByTagName("html")[0];
console.log(window.getComputedStyle(elem, null).getPropertyValue("font-size"));