在select2生成的元素中传递更多属性

时间:2018-05-11 06:23:45

标签: jquery jquery-select2

我使用select2库如下:

<select class="js-example-basic-single;" id="countries_list" name=""></select>


countries_list = [];
for (var property in datamap.options.data) {
     countries_list.push(datamap.options.data[property]['country']);
}
$("#countries_list").select2({
   data: countries_list.sort(),
 });

这很好但我需要的也是传递其他一些属性。例如name参数。我怎么能用select2做到这一点?

0 个答案:

没有答案