JS设置DropDownList选中某一条记录

 var objList = document.getElementById("<%=DropDownList_F27.ClientID%>");
            for (var i = 0; i < objList.options.length; i++) {
                if (objList.options[i].text == returnValue) {
                    objList.options[i].selected = true;
                }
            }

原文地址:https://www.cnblogs.com/Chinarain/p/3821999.html