日期:2014-05-17 浏览次数:20398 次
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="commitButton.WebForm1" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
<asp:Button ID="Button1" runat="server" Text="Button" />
</div>
</form>
</body>
</html>
<script type="text/javascript">
document.onkeydown = function() {
var evt = window.event
------解决方案--------------------
arguments[0];
if (evt && evt.keyCode == 13) {
if (typeof evt.cancelBubble != "undefined")
evt.cancelBubble = true;
if (typeof evt.stopPropagation == "function")
evt.stopPropagation();
}
return false;
}
</script>