1.获取select标签选中的内容
("#select1 option:selected").text();
2.获取select标签选中的option的value值
("#select option:selected").val();
3.获取select标签选中的的option的id值
("#select option:selected").attr("id");
1.获取select标签选中的内容
("#select1 option:selected").text();
2.获取select标签选中的option的value值
("#select option:selected").val();
3.获取select标签选中的的option的id值