什么是“通用 JavaScript 库”?如何将代码放入我的库中?

发布于 2024-12-09 14:23:33 字数 77 浏览 0 评论 0原文

这只是我的 /javascript 目录吗?我只是猜测。事实上,我在谷歌上找不到答案。不过,查看我尝试应用的代码的上下文,情况似乎确实如此。

Is it just my /javascript directory? I'm only guessing. I've had trouble uncovering the answer with google, actually. Looking into the context of the code I'm trying to apply, though, this seems to be the case.

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

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

发布评论

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

评论(2

故事↓在人 2024-12-16 14:23:33

通用 JavaScript 库 只是意味着您可以将这个通用代码片段与您选择的框架一起使用,例如 jQuery、MooTools、Dojo 等。

但这些框架可能已经提供了此功能,或者很容易复制。请参阅示例 jQuery 克隆

不是正确的答案:您的意思是 CommonJS 规范吗?它描述了 JavaScript 的模块格式。例如,Node.js 使用 CommonJS 模块

Common JavaScript library just means that you can use this generic snippet of code with the framework of your choice, e.g. jQuery , MooTools, Dojo,….

But those frameworks probably offer this functionality already or it's very easy to replicate. See for example jQuery clone.

Not the right answer: Do you mean the CommonJS specification? It describes a module format for JavaScript. For example Node.js uses CommonJS modules.

蓝眼睛不忧郁 2024-12-16 14:23:33

它不是目录,而是 JavaScript。它只是意味着您的 JavaScript 代码的一个公共位置,它可以去任何地方(可以从浏览器访问)。

It's not a directory, it's JavaScript. It just means a common place for your JavaScript code, it can go anywhere (that's accessible from the browser).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文