From e6d28882df598be9d3fc69ba693ebd4e7de9b4a7 Mon Sep 17 00:00:00 2001 From: dsh <15569653818@163.com> Date: Mon, 25 Mar 2024 14:10:17 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8F=90=E4=BA=A4=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- web/js/ajaxUtils.js | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/web/js/ajaxUtils.js b/web/js/ajaxUtils.js index 3d5f776..4797599 100644 --- a/web/js/ajaxUtils.js +++ b/web/js/ajaxUtils.js @@ -39,9 +39,22 @@ function buildOptions(xmlDoc,id) { for (var i=0; i { + 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); + if (options[i].attributes[2].nodeValue =="selected") { + selectObjNew.options[len].selected = true; + } } + + } }