HTML5 样板插件.js
如何在plugins.js 中包含额外的js 文件?是否期望我们只是将每个插件的内容复制并粘贴到那里?或者是否有一些我应该使用的 js include 方法?
具体来说,我想看一下此函数中的 go 示例:
// remap jQuery to $
(function($){
})(this.jQuery);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
html5boilerplate 的这一部分是应该/可以去那里的内容的缩写。
您可以通过以下几种方式处理plugins.js:
有很多选项可以包含您的 JS 插件……当然,您必须自己权衡它们。我通常使用选项 3 或 4,但我需要开始使用 5。
至于您提供的代码片段中的内容:
您将看到该代码块包装了许多 jQuery 插件(检查 文档)。它可用于包装您的 jQuery 特定代码,以便您可以使用
$
,同时将您的站点保持在 jQuery 兼容模式...这使您的站点可以与可能使用的其他库很好地配合>$
也是如此。That section of the html5boilerplate is sort of an abbreviation of what should/could go there.
You can approach plugins.js a few ways:
There's a lot of options for including your JS plugins...you'll have to weigh them yourself, of course. I usually use options 3 or 4, though I need to start using 5.
As for what goes in the snippet of code that you gave:
You'll see that block of code wrapping a lot of jQuery plugins (check the docs). It can be used to wrap your jQuery-specific code so you can make use of
$
while keeping your site in jQuery compatibility mode...which lets your site play nicely with other libraries that may use$
as well.