提交修改

master
dsh 1 year ago
parent 8a70e9f081
commit e6d28882df

@ -39,9 +39,22 @@ function buildOptions(xmlDoc,id) {
for (var i=0; i<options.length; i++) { for (var i=0; i<options.length; i++) {
var len = selectObj.length; var len = selectObj.length;
selectObj.length = len + 1; selectObj.length = len + 1;
if(id == 'func'){
let optionsArray = Array.from(options);
let filteredOptions = optionsArray.filter(option => {
return option.attributes[0].nodeValue.indexOf('SP') === -1;
});
selectObjNew.options[len] = new Option(filteredOptions[i].attributes[1].nodeValue, filteredOptions[i].attributes[0].nodeValue);
if (filteredOptions[i].attributes[2].nodeValue =="selected") {
selectObjNew.options[len].selected = true;
}
}else{
selectObjNew.options[len] = new Option(options[i].attributes[1].nodeValue, options[i].attributes[0].nodeValue); selectObjNew.options[len] = new Option(options[i].attributes[1].nodeValue, options[i].attributes[0].nodeValue);
if (options[i].attributes[2].nodeValue =="selected") { if (options[i].attributes[2].nodeValue =="selected") {
selectObjNew.options[len].selected = true; selectObjNew.options[len].selected = true;
} }
} }
}
} }

Loading…
Cancel
Save