下拉之後的值
$("#ID option:selected").text();
移除選項
$("#ID option:selected").remove();
設定某選項
$("#selectID").children().each(function(){
if ($(this).text()=="option name")
$(this).attr("selected","true");
});
下拉之後的值
$("#ID option:selected").text();
移除選項
$("#ID option:selected").remove();
設定某選項
$("#selectID").children().each(function(){
if ($(this).text()=="option name")
$(this).attr("selected","true");
});