假设您有以下
HTML5
<select id="example"> <option value="AA" data-id="143">AA</option> <option value="BB" data-id="344">BB</option> </select> $("#example").select2();
如何从所选选项中获取数据ID?
解决方法
@H_404_9@ 没有直接的方法与select2,你可以使用select2数据和jQuery的组合:$("#example").select2().find(":selected").data("id");
首先你得到select2数据,然后找到你选择的选项与jQuery,最后的数据属性.