zoukankan      html  css  js  c++  java
  • Select2

    <select multiple="multiple" class="selectCategory"></select>
        /*
        set - $(".select2-selection__rendered").prepend(
                '<li class="select2-selection__choice" title="">'
                + '<span class="select2-selection__choice__remove" role="presentation">×</span>'
                + '<span id="35130077">wahaha</span>'
                + '</li>');
    
        get - $('.select2-selection__choice').each;
        */
        function initSelect2ForCategory() {
            $(".selectCategory").select2({
              ajax: {
                url: "https://api.github.com/search/repositories",
                dataType: 'json',
                data: function (params) {
                  return {
                    q: params.term, // search term
                    page: params.page
                  };
                },
                processResults: function (data, page) {
                  return {
                    results: data.items
                  };
                },
                cache: true
              },
              escapeMarkup: function (markup) { return markup; }, 
              minimumInputLength: 1,
              templateResult: formatRepo, 
              templateSelection: formatRepoSelection 
            });
        }
        
        function formatRepo (repo) {
           if (repo.loading) return repo.text;
           return repo.full_name;    
       }
    
        function formatRepoSelection (repo) {
          return '<span id="' + repo.id + '">' + repo.full_name + '</span>';
        }
  • 相关阅读:
    使用grpc C++功能
    华为任正非访谈
    苹果产品
    异步编程
    基于磁盘存储
    spring 应用
    java简单框架设计
    消息队列架构
    03 java 基础:注释 关键字 标识符 JShell
    02 java 基础:java 文件名与类名关系 CLASSPATH
  • 原文地址:https://www.cnblogs.com/webglcn/p/4792869.html
Copyright © 2011-2022 走看看