如何读取select2多个值被选中

时间:2015-09-22 11:54:18

标签: jquery asp.net jquery-select2

我正在使用select2插件而不是下拉列表来获取多个选定值 这是我的代码,我使用选择框从查询中获取数据,并搜索数据并带回json响应并填充选择框中的数据。我已将此选择绑定到客户端,因此我连接计数< / p>

这是我的代码:

     <select style="width:100%;" id="cboolinkrelated' + count + '" class="chzn-container chzn-container-single span" multiple="multiple">

 $.ajax({

                                type: "POST",
                                url: 'api/Document/Gedocumentlink',
                                data: DocumentModel,
                                dataType: "json",
                                success: function (data) {

                                    debugger;

                                    for (var j = 1; j <= gridlength; j++) {
                                        $("#cboolinkrelated" + j + "").select2({
                                            quietMillis: 10,
                                            allowClear: true,
                                            placeholder: "Link to related"

                                        });

                                        $.each(data, function (key, value) {

                                            $("#cboolinkrelated" + j + "").append($("<option> </option>").val(value.AuditObjectSNo).html(value.AuditObject));
                                        });


                                },


                                error: function () {
                                    alert("Error");
                                }
                            });

点击“保存”按钮&amp;需要来自cbolinkrelated enter image description here

的选定值

0 个答案:

没有答案