最佳答案
我尝试使用 jQuery 根据选中的选项发出 ajax 请求。
有没有一种使用 jQuery 检索所选 选项 ID(例如“ id2”)的简单方法?
<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
});