动态加载的div上的jQuery Select2插件

时间:2018-10-06 07:33:25

标签: javascript jquery jquery-select2

我尝试加载一个具有带有select2插件的列表框的div。 以下代码用于div容器

<div class="form-body">
    <div class="form-group">
        <?php echo lang('project_product', 'product', array('class' => 'col-sm-2 control-label')); ?>
        <div class="col-sm-2">
            <select id="id_product" name="id_product" tabindex="4" class="form-control select2 id_product"></select> 
        </div>
    </div>       

    <div class="form-actions pull-right">
        <a href="javascript:;" id="cancel_product" class="btn btn-default">
            Cancel
        </a>&nbsp; 
        <a href="javascript:;" id="add" class="btn btn-success">
            <i class="fa fa-plus"></i> Add product
        </a>            
    </div> 
</div>   

div容器通过按钮上的on click事件加载:

$(document).on('click', '#add_product', function(e){
    $('#add_p_container').removeClass('hide');
    $('#add_p_container').load(JS_BASE_URL + 'admin/projects/add_product/' + id_project);       
});

问题在于,如果我将jQuery从下面的js文件加载到#add_product的on click事件中,则select2无效。

我用来初始化select2的代码:

$("#id_product").select2({
    minimumInputLength: 2,
    placeholder: "Select a product",
    allowClear: true,
    quietMillis: 100,
    ajax: {
        url: JS_BASE_URL + 'admin/products/productsList',
        dataType: 'json',
        type: "GET",
        quietMillis: 50,
        data: function (params) {
          return {
            q: params.term, // search term
            page: params.page
          };
        },
        processResults: function (data, params) {
          // parse the results into the format expected by Select2
          // since we are using custom formatting functions we do not need to
          // alter the remote JSON data, except to indicate that infinite
          // scrolling can be used
          params.page = params.page || 1;

          return {
            results: data,
            pagination: {
              more: (params.page * 30) < data.total_count
            }
          };
        },
        cache: true
    },
    escapeMarkup: function(markup) {
        return markup;
    } // let our custom formatter work

}); 

如果在div中将select2直接从上面加载时,我将收到错误消息:

 [Show/hide message details.] SyntaxError: expected property name, got end of script

你们中有人知道如何解决吗?谢谢!

1 个答案:

答案 0 :(得分:0)

尝试搜索解决此问题的方法后,似乎可以将脚本加载到div中,但是删除所有注释 我不知道为什么,但是它起作用了

因此,请确保您没有留下任何评论,否则它将无法正常工作