要用JavaScript创建一个<style>
标签,您可以使用以下代码:
// 创建一个<style>标签
const styleTag = document.createElement('style');
// 为<style>标签添加样式规则
styleTag.innerHTML = `
body {
background-color: lightblue;
}
h1 {
color: white;
text-align: center;
}
`;
// 将<style>标签添加到<head>标签中
document.head.appendChild(styleTag);
这段代码首先创建了一个<style>
标签,然后将一些样式规则添加到该标签中,最后将该标签添加到<head>
标签中。这样,页面上的元素就会根据这些样式规则进行渲染。
领取专属 10元无门槛券
手把手带您无忧上云