Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 ERPNEXT 中,我使用自定义脚本使用 $.getScript 加载一些外部库。JS 库正在加载,但 css 没有。希望得到一些建议
$.getScript 将只加载脚本文件。对于 css,你可以使用这样的东西。
$("<link/>", { rel: "stylesheet", type: "text/css", href: "your css file link" }).appendTo("head");