JavaScript中如何捕获一个键盘输入,如当按回车后,焦点移动到下一个元素?
3个回答
展开全部
<!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>
<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>
展开全部
<script type="text/javascript">
function document.onkeydown() //网页内按下回车触发
{
if(event.keyCode==13)
{
document.getElementById("login").focus();
}
}
</script>
function document.onkeydown() //网页内按下回车触发
{
if(event.keyCode==13)
{
document.getElementById("login").focus();
}
}
</script>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
function abn()
{
if(event.keyCode==10)
event.keyCode==13;
}
onKeyDown="abn()"
{
if(event.keyCode==10)
event.keyCode==13;
}
onKeyDown="abn()"
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询