外部 CSS 库未通过自定义脚本导入
External CSS library not importing via custom script
在 ERPNEXT 中,我使用自定义脚本通过 $.getScript 加载一些外部库。
正在加载 JS 库,但 css 没有。希望得到一些建议
$.getScript 将只加载脚本文件。对于 css 你可以使用这样的东西。
$("<link/>", {
rel: "stylesheet",
type: "text/css",
href: "your css file link"
}).appendTo("head");
在 ERPNEXT 中,我使用自定义脚本通过 $.getScript 加载一些外部库。 正在加载 JS 库,但 css 没有。希望得到一些建议
$.getScript 将只加载脚本文件。对于 css 你可以使用这样的东西。
$("<link/>", {
rel: "stylesheet",
type: "text/css",
href: "your css file link"
}).appendTo("head");