移動到右邊的,為什麼要選中後提交才能擷取到相應的值。
本帖最後由 qq914260102 於 2013-10-14 16:02:07 編輯
如果選到右邊,是無法擷取到值的,必須要點擊一次,選中了才能擷取到,怎麼讓右邊的預設能擷取值
sortitems = 1; // Automatically sort items within lists? (1 or 0)
function move(fbox,tbox) {
for(var i=0; iif(fbox.options[i].selected && fbox.options[i].value != "") {
var no = new Option();
no.value = fbox.options[i].value;
no.text = fbox.options[i].text;
tbox.options[tbox.options.length] = no;
fbox.options[i].value = "";
fbox.options[i].text = "";
}
}
BumpUp(fbox);
if (sortitems) SortD(tbox);
}
function BumpUp(box) {
for(var i=0; iif(box.options[i].value == "") {
for(var j=i; jbox.options[j].value = box.options[j+1].value;
box.options[j].text = box.options[j+1].text;
}
var ln = i;
break;
}
}
if(ln < box.options.length) {
box.options.length -= 1;
BumpUp(box);
}
}
function SortD(box) {
var temp_opts = new Array();
var temp = new Object();
for(var i=0; itemp_opts[i] = box.options[i];
}
for(var x=0; xfor(var y=(x+1); yif(temp_opts[x].text > temp_opts[y].text) {
temp = temp_opts[x].text;
temp_opts[x].text = temp_opts[y].text;
temp_opts[y].text = temp;
temp = temp_opts[x].value;
temp_opts[x].value = temp_opts[y].value;
temp_opts[y].value = temp;
}
}
}
for(var i=0; ibox.options[i].value = temp_opts[i].value;
box.options[i].text = temp_opts[i].text;
}
}
分享到:
------解決方案--------------------
懶得看代碼理解,純想象
form提交,select只提交選擇的option
所以如果要提交list2,要把全部都加設selected屬性,或者把option的每個value都賦值一個新控制項(例如hidden)來提交