JavaScript中如何捕获一个键盘输入,如当按回车后,焦点移动到下一个元素?

如题所述

<!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>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>焦点事件</title>
</head>
<script type="text/javascript">

function change(){
if(window.event.keyCode==13){
var text = document.getElementById("2");
text.focus();
}
}
function init(){
var text = document.getElementById("1");
text.focus();
}
</script>
<body onload="init();">
<input type="text" id="1" onkeydown="javascript:change();"/>
<input type="text" id="2"/>

</body>
</html>
温馨提示:内容为网友见解,仅供参考
第1个回答  2010-05-28
<script type="text/javascript">
function document.onkeydown() //网页内按下回车触发
{
if(event.keyCode==13)
{
document.getElementById("login").focus();

}
}
</script>
第2个回答  2010-05-28
function abn()
{
if(event.keyCode==10)
event.keyCode==13;
}

onKeyDown="abn()"
相似回答