var myselect=$("#test option").length; 警報(我的選擇); for(var i=0;i 得到option中的值: (2) } 以上是如何取得下拉框option的值?的詳細內容。更多資訊請關注PHP中文網其他相關文章!如何取得下拉框option的值?
var selectlength = $("#type option").length;
alert(selectlength);
for(var i = 0; i
alert($("#type option").get(i).value);
if($("#type option"). get(i).value == d.TYPE_ID) // 得到option的value值與json中的值比較,若相等,就將這個value值設為預設選取項
{
//var select =document.getElementById("type");
//alert(sel.options[select.selectedIndex].text);
//var aa=$("#type option").get(i) ;
//$("#type option[value='"+ d.TYPE_ID +"']").attr('selected',true);
//alert("選取的"+$ ("#type").find("option:selected").text());
$('#type').combobox('select',d.TYPE_ID); // easyUI中給清單設定顯示值
}