我正在尝试检测该选项是否已被选中,但它总是被选中,因为我在select
上有一个onclick
function deselectSelected(elm){
alert($(elm).find("option:selected").attr("selected")) //always returns selected
}
答案 0 :(得分:0)
试试这个:
$('#mySelectBox option').each(function() {
if($(this).is(':selected')) ...