// 取得select值
var text=$("#mySelect").find("option:selected").text(); //取得Select選取項目的Text
var value=$ ("#mySelect").val(); //取得Select選取項目的Value
var value=$("#mySelect option:selected").attr("value"); //取得Select選取項目的Value
var index=$("#mySelect").get(0).selectedIndex; //取得Select選取項目的索引值,從0開始
var index=$("#mySelect option:selected" ).attr("index"); //不可用! ! !
var index=$("#mySelect option:selected").index(); //取得Select選取項目的索引值,從0開始
var maxIndex=$("#mySelect option:last") .attr("index"); //不可用! ! !
var maxIndex=$("#mySelect option:last").index();//取得Select最大索引值,從0開始
$("#mySelect").prepend(""); //Select第一項前插入一項
// 設定select值
//根據索引設定選取項
$("#mySelect").get(0).selectedIndex=index;//index為索引值
//根據value設定選取項
$("#mySelect").attr("value","newValue");
$("#mySelect").val("newValue");
$(" #mySelect").get(0).value = value;
//依據text設定對應的項目為選取項目
var count=$("#mySelect option").length;
for( var i=0;i
if($("#mySelect").get(0).options[i].text == text)
{
$("#mySelect").get(0).options[i].selected = true;
break;
}
}
$("#mySelect").empty();