需要在工具提示中悬停时显示每个选项的数据ID值
<select id="example">
<option value="AA" data-id="143">AA</option>
<option value="BB" data-id="344">BB</option>
<option value="CC" data-id="773">CC</option>
</select>
我正在使用select2 https://select2.github.io/examples.html 请帮忙!!!
答案 0 :(得分:4)
您应该将data-id
重命名为title
,或在$("#example").select2();
之前运行以下内容:
$("#example option").attr('title', function () {
return $(this).attr('data-id');
});