什么是“通用 JavaScript 库”?如何将代码放入我的库中?
这只是我的 /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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
通用 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.
它不是目录,而是 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).