如何使用 jquery 将一些内容添加到应答器 HEAD 中?

发布于 2024-10-07 02:19:25 字数 376 浏览 2 评论 0原文

我想在网络文档的头部动态插入一些 HTML 应答器。我尝试添加:

$("head").append("<style type=\"text/css\"> @import \"http://ajax.googleapis.com/ajax/libs/dojo/1.5/dojox/grid/resources/claroGrid.css\";.container { text-align: center; margin: 10px; } .info { margin: 10px; }</style>");

但看起来不起作用...

您知道是否可以在头部应答器中动态添加一些内容?

非常感谢你,

蝙蝠

I'd like to insert dynamiccaly some balises of HTML in the head of the web document. I've tried to add :

$("head").append("<style type=\"text/css\"> @import \"http://ajax.googleapis.com/ajax/libs/dojo/1.5/dojox/grid/resources/claroGrid.css\";.container { text-align: center; margin: 10px; } .info { margin: 10px; }</style>");

But it looks like it doesn't work...

Do you know if it's possible to add dynamiccaly some content in the head balise?

Thank you very much,

Bat

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

海风掠过北极光 2024-10-14 02:19:25

我认为您的问题可能是您缺少导入网址周围的 url() 位。您也不需要 url 周围的引号。请参阅此参考: http://htmlhelp.com/reference/css/style-html .html#importing

尝试将其更改为:

$("head").append('<style type="text/css"> @import url(http://ajax.googleapis.com/ajax/libs/dojo/1.5/dojox/grid/resources/claroGrid.css); .container { text-align: center; margin: 10px; } .info { margin: 10px; }</style>');

I think your problem might be that you are missing the url() bit around your import url. You also do not need the quotes around the url. See this reference: http://htmlhelp.com/reference/css/style-html.html#importing

Try changing it to:

$("head").append('<style type="text/css"> @import url(http://ajax.googleapis.com/ajax/libs/dojo/1.5/dojox/grid/resources/claroGrid.css); .container { text-align: center; margin: 10px; } .info { margin: 10px; }</style>');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文