js回车事件,用回车键控制input表单
//gridview 文本框 回车 触发 Button 事件<script type="text/javascript" language="javascript" >
function clickButton()
{
if (event.keyCode == 13)
{
document.all('ibtnUpdate').click();
return false;
}
}
</script>
<asp:TextBox ID="TextBox3" onkeypress="return(clickButton());" runat="server" >
<script type="text/javascript" language="javascript">
function KeyDown() *//屏蔽回车事件
{
if(event.keyCode == 13)
{ return false;
}
}
function EnterTextBox() *//最后文本框 回车 触发提交
{
if(event.keyCode == 13 && document.all["txtCode"].value != "")
{
document.all['btnUp'].focus();
document.all['btnUp'].click();
return false;
}
}
</script>
<form id="form1" runat="server" onkeypress="return KeyDown()" > *//屏蔽回车事件
this.txtCode.Attributes.Add("onkeypress", "EnterTextBox()"); *//最后文本框 回车 触发提交