页面默认回车键

在Asp.net页面中,使用服务器Button按钮,默认第一个Button按钮响应回车事件,很多时候,第一个按钮并不是我们想要回车操作的按钮,那么如何设置页面的默认回车按钮呢?

 

在form中设置默认按钮

  1.  <form id="form1" defaultbutton="btnSave" runat="server">

用javascript脚本控制

  1. <script>
  2.   function document.onkeydown()
  3.     {
  4.     //使用document.getElementById获取到按钮对象
  5.      var button = document.getElementById('<%=btnSave.ClientID%>');
  6.      if(event.keyCode == 13)
  7.      {
  8.       button.click();
  9.       event.returnValue = false;
  10.      }
  11.  }
  12. </script>

 

二、单个按钮

  1.  function SetKeydown(button)
  2.  {
  3.     if(event.keyCode==13)
  4.     {
  5.         event.keyCode = 9;
  6.         event.returnValue = false;
  7.         document.all[button].click();
  8.     }
  9.  }
  10. <asp:TextBox ID="TxtCustomerName" runat="server" Width="60%" ToolTip="请点击按钮选择客户"></asp:TextBox>
  11. <asp:ImageButton ID="btnSCustomer" runat="server" ImageAlign="AbsMiddle" ImageUrl="~/App_Themes/Default/images/icon/search2.gif" CausesValidation="False" AccessKey="C" ToolTip="点击选择客户(Alt+C)" />
    1.         TxtCustomerName.Attributes.Add("onkeypress""SetKeydown('" + btnSCustomer.ClientID + "')");
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值