DropDownList 선택 항목의 값 가져오기

3460 단어 list
 1 <script type="text/javascript" language="javascript"> 
 2           function CheckDropDownList() { 
 3               var dropDownList = document.getElementById("<%=DropDownListID.ClientID %>"); // DropDownList  
 4               var dropDownListValue = dropDownList.options[dropDownList.selectedIndex].value; //  
 5               // :DropDownListID DropDownList ID。 
 6    
 7               //JS 0 : 
 8               if (dropDownListValue == 0) { 
 9                   alert(" ……."); 
10                  dropDownList.focus(); 
11                  return false; 
12              } 
13              else { 
14                  return true; 
15              } 
16          } 
17      </script>

 
function enble() {
            var ddl = document.getElementById("<%=ddl_YesNo_State.ClientID %>");
            var txt = document.getElementById("<%=btn_SaveALL.ClientID %>");
            var ddlValue = ddl.options[ddl.selectedIndex].value;
            if (ddlValue.toString() == " ") {
                txt.disabled = true;
            }
            else {
                txt.disabled = false;
            }
        }

좋은 웹페이지 즐겨찾기