gpt4 book ai didi

javascript - jQuery 追加不起作用(将 css 添加到头部)

转载 作者:行者123 更新时间:2023-11-28 11:27:33 25 4
gpt4 key购买 nike

我想将样式表添加到页面头部,但由于某种原因它不起作用。我应该使用其他东西来代替 append 吗?

代码

$('head').append('<link rel="stylesheet" href="test.css" type="text/css" class="test" />');

也许一些有用的信息,我使用的是 Firefox 3.6.17

最佳答案

你可以尝试这样的事情:

loadcss = document.createElement('link');
loadcss.setAttribute("rel", "stylesheet");
loadcss.setAttribute("type", "text/css");
loadcss.setAttribute("href", "test.css");
document.getElementsByTagName("head")[0].appendChild(loadcss);

关于javascript - jQuery 追加不起作用(将 css 添加到头部),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6377448/

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