//下拉列表填充元素
        function selectSetData(data)
        {
            var selectDom=document.getElementById("下拉列表Id");
            //设置长度为0
            selectDom.length=0;
            for (let index = 0; index < data.length; index++) {
               var optin=new Option(data[i].id,data[i].name);
               //添加元素到下拉列表
               selectDom.add(optin);
            }
        }