请教如何在zotero里调用第三方javascript #235
Unanswered
kangaroolab
asked this question in
求助 / Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
在zotero 7.0, 打开error console, 然后试着运行下面的code:
let doc = window.document;
let s = doc.createElement('script');
s.src = 'https://cdn.jsdelivr.net/npm/scittle@0.6.17/dist/scittle.js';
s.type = 'text/javascript';
doc.documentElement.appendChild(s);
遇到以下错误信息:
Loading failed for the <script> with source “https://cdn.jsdelivr.net/npm/scittle@0.6.17/dist/scittle.jsâ€
请问如何可以正确调用第三方javascript library/module? 多谢
Beta Was this translation helpful? Give feedback.
All reactions