<script language="javascript"> function SubmitKeyClick() { if (event.keyCode == 13) { event.keyCode=9; event.returnValue = false; document.all('button1').click(); } } </script>
<html xmlns="http://www.w3.org/1999/xhtml" > <head runat="server"> <title>无标题页</title> <script> function cli() { location.href="http://www.sina.com"; } function bin() { if (event.keyCode == 13) { document.getElementById('Button1').click(); } } </script> </head> <body onkeydown="bin()"> <form id="form1" runat="server"> <div> <input id="Button1" type="button" value="button" onclick="cli()" /></div> </form> </body> </html>