Get custom data-attribute in select2 with <select>
我们需要在上面的链接中指定相同的东西。但是,如何在formatResult函数中获取option元素的属性?
答案 0 :(得分:2)
您可以尝试以下代码:
$select2.data('placeholder', 'please choose').html(_options).select2({
formatNoMatches: function (term) {
return 'There is no "' + term + '" item';
},
formatResult: function(term) {
return $(term.element).data('cnt');
},
allowClear: true
});