当前位置: 代码迷 >> Web前端 >> 可输入的上拉框
  详细解决方案

可输入的上拉框

热度:82   发布时间:2012-07-28 12:25:13.0
可输入的下拉框
<HTML>
<HEAD>
<META http-equiv='Content-Type' content='text/html; charset=gb2312'>
<TITLE>可输入的下拉框</TITLE>
</HEAD>
<BODY >
<div style="position:relative;">
<span style="margin-left:100px;width:18px;overflow:hidden;">
<select style="width:118px;margin-left:-100px" onchange="this.parentNode.nextSibling.value=this.value">
<option value="AAA"> AAA </option>
<option value="BBB"> BBB </option>
<option value="CCC"> CCC </option>
</select>
</span>
<input name="box" style="width:100px;position:absolute;left:0px;">
</div>
</BODY>
</HTML>

  相关解决方案