//以下代码多个option选中也可使用
$(function(){
var selectId = $('#selectId>option:selected');
selectId.val(function(){
alert(this.id);
})
});
假如有这么一个select
调用:
alert($(":selected","#sel").attr("id"));
即可
一句话搞定:
$("#thisselectID option:selected").attr("id");
OK了!