解决方案 »

  1.   

    用jquery ,select加上onchange事件
     <select name="select"  onchange="$('input').val($('select option:selected').val())";
    这样就有值了
      

  2.   

    <select name="select" style="position:absolute;margin:-10px 0 0 -10px;width:110px;height:20px; clip:rect(0 120 24 100)" id="select" onchange="document.getElementsByName('seo_comment[]')[0].value=select.value;document.getElementsByName('seo_comment[]')[0].select()">  
        <option value="aaa">aaa</option>  
        <option value="bbb">bbb</option>  
        <option value="ccc">ccc</option>  
        </select>  
      

  3.   


      <script type="text/javascript">
    function change(){
    document.getElementById('txt').value = document.getElementById('select').value;
    }
      </script>  <select name="select" style="position:absolute;margin:-10px 0 0 -10px;width:110px;height:20px; clip:rect(0 120 24 100)" id="select" onchange="change()">  
        <option value="aaa">aaa</option>  
        <option value="bbb">bbb</option>  
        <option value="ccc">ccc</option>  
        </select>  
    <input type="text" style="position:absolute;margin:-10px 0 0 -10px;width:88px;height:16px" name="seo_comment[]" id="txt" value="">