From edda01981efe83f7d0811cb5ad3642918ceda293 Mon Sep 17 00:00:00 2001 From: dsh <15569653818@163.com> Date: Thu, 21 Mar 2024 11:11:09 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8F=90=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- web/js/ajaxUtils.js | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/web/js/ajaxUtils.js b/web/js/ajaxUtils.js index 11f01d6..4197952 100644 --- a/web/js/ajaxUtils.js +++ b/web/js/ajaxUtils.js @@ -26,21 +26,21 @@ function createHttpRequest() { function buildOptions(xmlDoc,id) { var selectObj = document.getElementById(id); - if (!selectObj || selectObj.tagName!="TR") { + if (!selectObj || selectObj.tagName!="SELECT") { return; } var options = xmlDoc.getElementsByTagName("option"); //clear select object - for (var i = selectObj.length-1 ; i >= 0 ; i--){ - selectObj.options[i] = null; - } + // for (var i = selectObj.length-1 ; i >= 0 ; i--){ + // selectObj.options[i] = null; + // } selectObj.length = 0; for (var i=0; i