jQuery 附加不起作用(将 css 添加到头部)
我想将样式表添加到页面头部,但由于某种原因它不起作用。我应该使用其他东西而不是附加吗?
代码
$('head').append('<link rel="stylesheet" href="test.css" type="text/css" class="test" />');
可能是一些有用的信息,我使用的是 firefox 3.6.17
I want to add a stylesheet to the head of a page, but for some reason it doesn't work. Should i use something else, instead of append?
the code
$('head').append('<link rel="stylesheet" href="test.css" type="text/css" class="test" />');
maybe some usefull info, i am using firefox 3.6.17
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
你可以尝试这样的事情:
You could try something like this:
你可以做
You could do
您应该将该代码放入准备好的文档中,以便加载 DOM。你是?
然后是这样的:
You should put that code in the document ready, in order to have the DOM loaded. Are you?
And then something like:
尝试:
示例位于: http://jsfiddle.net/XjAu4/
try:
example is on: http://jsfiddle.net/XjAu4/