select获得选中项:
$("#mySelect option[selected]")
获得选中项的值
$("#mySelect option[selected]").val()
让第三项选中
$("#mySelect").val(2)
获得第三项(它不一定是选中项)
$("#mySelect option").eq(2)
select获得选中项:
$("#mySelect option[selected]")
获得选中项的值
$("#mySelect option[selected]").val()
让第三项选中
$("#mySelect").val(2)
获得第三项(它不一定是选中项)
$("#mySelect option").eq(2)