在页面中包含 JavaScript 和 CSS (jQuery)

发布于 2024-09-02 23:55:24 字数 241 浏览 2 评论 0原文

我最近遇到了 includeMany jQuery 插件将外部 JavaScript 和 CSS 文件包含到页面中。尽管它于 2009 年初发布,但博客或其他地方没有任何参考资料。我想知道可以用吗?使用起来是怎样的体验?

I recently came across the includeMany jQuery plugin to include external JavaScript and CSS files into a page. Although it was released in early 2009 there are NO references in blogs or elsewhere. I wonder if it's usable? What is the experience using it?

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

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

发布评论

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

评论(2

極樂鬼 2024-09-09 23:55:24

您可以使用下面的示例包含 JavaScript 和 CSS。不需要任何插件。

要包含 JavaScript 代码,请执行以下操作:

$.getScript("youpathtoscript.js",function() {
            //this script is loaded
});

要包含 CSS 文件:

$("<link/>", {
   rel: "stylesheet",
   type: "text/css",
   href: "styles/yourcss.css"
}).appendTo("head");

You can include JavaScript and CSS using the example below. There is no need for any plugins.

To include JavaScript code, do this:

$.getScript("youpathtoscript.js",function() {
            //this script is loaded
});

To include CSS files:

$("<link/>", {
   rel: "stylesheet",
   type: "text/css",
   href: "styles/yourcss.css"
}).appendTo("head");
酒儿 2024-09-09 23:55:24

对于 CSS/JavaScript 导入(包括)的集合:

Eval 替代方案:

$("<script></script>", {type: "text/javascript",})
.text("alert('your function');")
.appendTo("head");

嵌入式 CSS:

$("<style></style>", {type: "text/css",})
.text("#you{css:rule}")
.appendTo("head");

For collection of CSS/JavaScript import (including):

Eval alternative:

$("<script></script>", {type: "text/javascript",})
.text("alert('your function');")
.appendTo("head");

Embedded CSS:

$("<style></style>", {type: "text/css",})
.text("#you{css:rule}")
.appendTo("head");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文