JavaScript 提供了一种强大的机制,可以将 CSS 规则动态添加到文档中。此功能使开发人员能够更改网页的视觉外观,而无需修改 HTML 标记。
最简单的方法是创建一个新的样式节点并将其附加到文档的头部:
<code class="javascript">// Define your custom CSS as text var styles = ` .my-class { color: red; font-weight: bold; } `; // Create a new style element and set its text content var styleSheet = document.createElement("style"); styleSheet.textContent = styles; // Append the style element to the document head document.head.appendChild(styleSheet);</code>
通过这种方法,您的自定义 CSS 规则将应用于文档,动态增强其视觉呈现。
以上是如何使用 JavaScript 动态添加 CSS 样式?的详细内容。更多信息请关注PHP中文网其他相关文章!