gpt4 book ai didi

javascript - 用 JS 把 CSS 放在 header 中

转载 作者:太空狗 更新时间:2023-10-29 12:37:43 24 4
gpt4 key购买 nike

我必须在当前页面的页眉中使用 Javascript 或 JQuery 放置 CSS(页眉中的 block )。css是文本格式的,像这样(来自服务器):

label { font-family: Verdana, sans-serif; font-size: 12px; display: block; }
input { padding: 3px 5px; width: 250px; margin: 0 0 10px; }
input[type="file"] { padding-left: 0; }
input[type="submit"] { width: auto; }

我想将这个 CSS 放在标题 block 中,使用 JavaScript 如下:

<meta name="author" content="" />
<link rel="stylesheet" type="text/css" href="css/global.css" />
<style type="text/css">
label { font-family: Verdana, sans-serif; font-size: 12px; display: block; }
input { padding: 3px 5px; width: 250px; margin: 0 0 10px; }
input[type="file"] { padding-left: 0; }
input[type="submit"] { width: auto; }
</style>
</head>

这可能吗?

谢谢!

最佳答案

使用 jQuery,你可以做这样的事情:

 $('<style type="text/css"> ' + myCSS + '</style>').appendTo('head');

关于javascript - 用 JS 把 CSS 放在 header 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8434296/

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