弄到现在才知道网页没有combobox,弄网上的服务器控件不方便,自己用textbox+dropdownlist用CSS组合起一个简单的combobox效果。...

CSS类代码
  1. <style type="text/css">
  2. .DropListWithText1 {
  3.     left:0px;
  4.     top:0px;
  5.     width:100%;
  6.     height:20px;
  7.     text-align:left;
  8.     border:0px;
  9. }
  10.  
  11. .TextWithDropList1 {
  12.     position:relative;
  13.     left:0pt;
  14.     top:-20px;
  15.     width:85%;
  16.     height:13px;
  17.     text-align:left;    
  18. }
  19. .DivWithTextAndDropList{
  20.     height:20px;
  21. }
  22. </style>

 

HTML代码
  1. <table width="200" border="1">
  2.   <tr>
  3.     <td >
  4.     <div class="DivWithTextAndDropList"><select name="select2" class="DropListWithText1" id="select2">
  5.       <option value="已发证书到学校">已发证书到学校</option>
  6.       <option value="正在办理">正在办理</option>
  7.     </select>
  8.       <input name="textfield2" type="text" class="TextWithDropList1" id="textfield2" /></div>
  9.       </td>
  10.   </tr>
  11.   </table>

基本完成了使用效果

image image

思路是这样的。用CSS将textbox(HTML叫input)覆盖到dropdownlist(HTML叫select)上面,用JS脚本控制内容的关联。

这里的代码要注意几点。

1.使用CSS样式的position:relative;来实现重叠的效果。因为是textbox浮在dropdownlist的上面,所以HTML标签的顺序必须先dropdownlist后textbox。

2.放在Table这样的容器里时,虽然两个控件重叠了,但是Table的单元格的高度还是被撑开到两个控件高度之和。唯一解决的办法是使用DIV标签包裹一下。DIV可以强制其高度。

注意:上面的只是界面,就是一个文本框覆盖列表框的方法。要实现列表框与文本框内容的关联,需要添加JS脚本。

1.添加select的onchange事件。

2.select控件的绑定的字典表时添加一个第一项"请选择"。

3.每次调用玩onchange事件后,讲select控件的选择项恢复至第一项.

(第2、3步操作是因为select的onchange事件的一个bug。select控件默认第一个是被选中的,所以用在第一次调用时选择select的第一项,onchange时间不会被调用。)

Code Snippet
  < div class ="DivWithTextAndDropList">
     < script   type ="text/javascript"   language = "javascript ">
         function setValueJx(value,sender) {
             var txt = document.getElementById( 'DetailsView1_TextBoxJx');
             if (sender.selectedIndex != 0) {
                txt.value = value;
            }
            sender.selectedIndex = -1;
        }
     </ script >
     < asp : DropDownList ID ="DropDownList2" runat ="server"   onchange ="setValueJx(this.value,this)"
         DataSourceID ="ObjectDataSourceDictJx" DataTextField ="name" DataValueField ="id"
     CssClass ="DropListWithText">
     </ asp : DropDownList >
      < asp : TextBox ID ="TextBoxJx"   CssClass ="TextWithDropList"
      runat ="server" Text =' <%# Bind("Jx") %> ' Width ="80%"></ asp : TextBox >
</ div >

PS:其实ASP.NET里面网上有几个开源的combo控件。我找到是

http://www.cnblogs.com/bestcomy/articles/136087.html

http://www.codeproject.com/aspnet/combobox.asp?target=combobox

具体我也没试。都是个人作品。

转载于:https://www.cnblogs.com/edzjx/archive/2011/10/25/2223611.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值