在Asp.net页面中,使用服务器Button按钮,默认第一个Button按钮响应回车事件,很多时候,第一个按钮并不是我们想要回车操作的按钮,那么如何设置页面的默认回车按钮呢?
在form中设置默认按钮
- <form id="form1" defaultbutton="btnSave" runat="server">
用javascript脚本控制
- <script>
- function document.onkeydown()
- {
- //使用document.getElementById获取到按钮对象
- var button = document.getElementById('<%=btnSave.ClientID%>');
- if(event.keyCode == 13)
- {
- button.click();
- event.returnValue = false;
- }
- }
- </script>
二、单个按钮
- function SetKeydown(button)
- {
- if(event.keyCode==13)
- {
- event.keyCode = 9;
- event.returnValue = false;
- document.all[button].click();
- }
- }
- <asp:TextBox ID="TxtCustomerName" runat="server" Width="60%" ToolTip="请点击按钮选择客户"></asp:TextBox>
- <asp:ImageButton ID="btnSCustomer" runat="server" ImageAlign="AbsMiddle" ImageUrl="~/App_Themes/Default/images/icon/search2.gif" CausesValidation="False" AccessKey="C" ToolTip="点击选择客户(Alt+C)" />
-
- TxtCustomerName.Attributes.Add("onkeypress", "SetKeydown('" + btnSCustomer.ClientID + "')");