jquery获得select选中索引
$('#someId').prop('selectedIndex');
$('option:selected', '#someId').index();
$('#someId option').index($('#someId option:selected'))
以上三种方式可以取到索引值
纠正jquery获取radio值的做法
网上流行的说法就是
能取到选中项的value,但测试后发现只在IE下有效,在firefox和Chrome中不论选中哪一项,或者不选,取到的值都是第一项的value
正确做法应该是
同样对于checkbox也是这种写法
$(input[name='aaa'][checked]).val()
正确做法应该是
$("input[name='aaa']:checked").val()
努力生活,珍惜一切,知足最快乐!young joy..