我正在使用jQuery插件select2.js。我如何選擇使用jQuery選定選項的數據屬性。使用jquery選擇選項的數據屬性
這裏是代碼
<select class="select2">
<option data-id="1" value="2"> CASE 1 </option>
<option data-id="2" value="2"> CASE 1 </option>
<option data-id="3" value="2"> CASE 1 </option>
</select>
$(document).ready(function(){
$('.select2').select2();
$('.select2').click(function(){
//alert($(this).val());
});
});
我如何使用jQuery獲得所選選項的data-id
。