是不能编辑,但是可以凑出类似效果
---------------------------------------------
<html>
<head>
<title>可编辑的下拉框</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</head>
<body bgcolor="#FFFFFF" text="#000000">
<select onchange="mShow.value=this.options[this.selectedIndex].value;mShow.focus();" name="mySelect" style="width:300px;height:20px;top:50px;left:50px;position:absolute;clip:rect(0 300 20 280)">
    <option value="Damboo">Damboo</option>
    <option value="[email protected]">[email protected]</option>
  </select>
<input type="text" name="mShow" style="width:281px;position:absolute;top:50px;left:50px;z-index:1;border-right:0px solid;">
</body>
</html>

解决方案 »

  1.   

    我写了个例子不知道是不是你要的那种?
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
    <title>下拉框+文本框</title>
    </head><body>
    <table>
     <tr>
       <td  style="font-size: 12px;">
    既可以输入新的信息,又可以从下拉框中选择:
    </td>
    <td valign="top">
    <select name="myselect"
            style=" width:220; position:absolute;clip: rect(0 100% 90% 201)" 
    onchange="document.getElementById('txt').value=this.value">
    <option value="">  </option>
    <option value="蓝色经典"> 蓝色经典 </option>
    <option value="织梦地带"> 织梦地带 </option>
    <option value="联盟论坛"> 联盟论坛 </option>
    <option value="无忧脚本"> 无忧脚本 </option>
    </select>
    <input name="txt" 
           type="text" 
       size="30"/>
    </td>
     </tr>
    </table></body>
    </html>