用一个hidden的input
提交的时候存
document.getElementById("aaa").options[document.getElementById("aaa").selectedIndex].text

解决方案 »

  1.   

    呵呵,正好也看到另一个贴子问这个问题,谢谢 hbhbhbhbhb1021(天外水火(我要多努力))兄~
      

  2.   

    <script language=javascript>
    function myFun(){
      opText=document.all.aaa.options[document.all.aaa.selectedIndex].innerText;
      alert(opText);
    }
    </script>
    <body>
    <form id=frm onSubmit="return myFun()">
    <select name="aaa">
            <option value=""></option>
            <option value="red">红色</option>
            <option value="green">绿色</option>
            <option value="blue">蓝色</option>
    </seelct>
    <input type=submit name=sub value=提交>
    </form>