我有多个动态(组合框)下拉列表,我想在单击每个列表时从单个变量的不同列表中获取所有选定项目的值
function createList(arrunique,arrayout){
for (i=0 ; i < arrayout[0].length ; i++){
var divId = i;
$('#tb').append('<select class="list" onclick="getChecked()" name="combo" id="'+divId+'"></select>');
var select = document.getElementById(divId);
select.options[select.options.length] = new Option("Select "+ arrunique[i][0]);
for (j=1 ; j < arrunique[i].length ; j++){
select.options[select.options.length] = new Option(arrunique[i][j]);
}
}
}
function getChecked(){
var elm = document.getElementByName("combo");
alert(elm.options[elm.selectedIndex].value);
}
请建议我如何获取这些选定项目的值 我如何获取这些选定项目的值 请建议我如何获取这些选定项目的值 我如何获取这些选定项目的值