关于jQuery select2

发布于 2022-09-03 14:09:13 字数 290 浏览 21 评论 0

-- select2
    -- css
         -- select2.css
         -- select2.min.css
    -- js
         -- select2.full.js
         -- select2.full.min.js
         -- select2.js
         -- select2.min.js

其中 select2.full.jsselect2.js有什么区别?

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

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

发布评论

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

评论(4

夏了南城 2022-09-10 14:09:13

一般都是用 select2.jshttps://select2.github.io/ 官方首页最下面回答了你的问题。

Standard (select2.js / select2.min.js)
This is the build that most people should be using for Select2. It includes the most commonly used features.
Full (select2.full.js / select2.full.min.js)
You should only use this build if you need the additional features from Select2, like the compatibility modules or recommended includes like jquery.mousewheel

简单 2022-09-10 14:09:13

看 Github 源码中的 Gruntfile.js,有如下配置

    includes = [
        "jquery.select2",
        "almond",

        "jquery-mousewheel" // shimmed for non-full builds
    ];

    fullIncludes = [
        "jquery",

        "select2/compat/containerCss",
        "select2/compat/dropdownCss",

        "select2/compat/initSelection",
        "select2/compat/inputData",
        "select2/compat/matcher",
        "select2/compat/query",

        "select2/dropdown/attachContainer",
        "select2/dropdown/stopPropagation",

        "select2/selection/stopPropagation"
    ].concat(includes);
请爱~陌生人 2022-09-10 14:09:13

通常用select2.min.js,除非你还要引用select2的其他的模块,比如鼠标滚轮,分页等.

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