var typeNum = $("#type").val();
var typeNum = $("#type").find(“option:selected”).val();
这两个都可以获取到被选中的option的value值。
var typeText = $("#type").find(“option:selected”).text();
var typeIndex = $("#type ").get(0).selectedIndex;
$("#type").val(“11”);
因篇幅问题不能全部显示,请点此查看更多更全内容