rt啊
郁闷了

解决方案 »

  1.   

    <script language="javascript">
    function SelectValue()
    {
    alert(window.Form1.DropDown[window.Form1.DropDown.selectedIndex].value);
    }
    </script>
    <form id="Form1" method="post" runat="server">
    <SELECT name="DropDown">
    <OPTION value=1>1</OPTION>
    <OPTION value=2>2</OPTION>
    <OPTION value=3>3</OPTION>
    <OPTION value=4>4</OPTION>
    <OPTION value=5>5</OPTION>
    <OPTION selected value=6>6</OPTION>
    </SELECT>
    <input type=button onclick="SelectValue()" value="选择">
    </form>
      

  2.   

    var item = document.getElementById("控件名").options;
    var enable1 = item[2].selected;
    2是位置
      

  3.   

    <script language="javascript">
    function SelectValue()
    {
    alert(window.Form1.DropDown[window.Form1.DropDown.selectedIndex].value);
    }
    </script>
    <form id="Form1" method="post" runat="server">
    <SELECT name="DropDown">
    <OPTION value=1>1</OPTION>
    <OPTION value=2>2</OPTION>
    <OPTION value=3>3</OPTION>
    <OPTION value=4>4</OPTION>
    <OPTION value=5>5</OPTION>
    <OPTION selected value=6>6</OPTION>
    </SELECT>
    <input type=button onclick="SelectValue()" value="选择">
    </form>
    ====
    同上
      

  4.   

    var item = document.getElementById("控件名").options;
    var enable1 = item[2].selected;