gpt4 book ai didi

javascript - 使用 JavaScript 引用 CSS 类

转载 作者:太空宇宙 更新时间:2023-11-04 03:17:48 24 4
gpt4 key购买 nike

<html>
<body>
<head>

<style type="text/css">
#someClass {
color:red;
}
</style>

</head>

<div id="someClass"></div>

<script type="text/javascript">
alert(document.getElementById("someClass").style.color);
</script>

</body>
</html>

正如您从我的代码中看到的那样,我试图弄清楚我是否可以引用在 CSS 中定义的类的样式属性,而不是直接在标签的样式属性中。

最佳答案

您正在寻找 window.getComputedStyle() - 这里的小用法示例。

   alert(window.getComputedStyle(document.getElementById('someClass')).color); 
#someClass {
color:red;
}
<div id="someClass"></div>

关于javascript - 使用 JavaScript 引用 CSS 类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28402454/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com