Tôi đang cố gắng sử dụng jQuery để thực hiện một yêu cầu ajax dựa trên một tùy chọn đã chọn.
Có cách nào đơn giản để truy xuất id tùy chọn đã chọn (ví dụ: "id2") bằng jQuery không?
<select id="my_select">
<option value="o1" id="id1">Option1</option>
<option value="o2" id="id2">Option2</option>
</select>
$("#my_select").change(function() {
//do something with the id of the selected option
});