zoukankan      html  css  js  c++  java
  • JS获取DropDownList选择项的值

    下面是JS代码:
     <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>
    
  • 相关阅读:
    简化单例模式
    static
    单例模式之懒汉模式
    Car race game
    poj-2403
    poj-2612
    poj-1833
    poj--2782
    poj--2608
    poj--3086
  • 原文地址:https://www.cnblogs.com/Leo_wl/p/1688016.html
Copyright © 2011-2022 走看看