复制番号代番号次のように:
<html>
<頭>
<title>Enter2Tab</title>
<script type="text/javascript">
window.onload=function(){
var list = 新しい配列();
for(var i=5;i<document.all.length;i++)
{
if(document.all[i].type=="text"||document.all[i].tagName=="SELECT")
list.push(i);
}
for(var i=0;i<list.length-1;i++)
{
document.all[list[i]].setAttribute("nextFocusIndex",list[i+1]);
document.all[list[i]].onkeydown=JumpToNext;
}
for(var i=list.length-1;i<document.all.length;i++)
{
if(document.all[i].type=="ボタン")
{
document.all[list[list.length-1]].setAttribute("nextFocusIndex",i);
document.all[list[list.length-1]].onkeydown=JumpToNext;
壊す;
}
}
document.all[リスト[0]].focus();
}
関数 JumpToNext(){
if(event.keyCode==13)
{
var nextFocusIndex=this.getAttribute("nextFocusIndex");
document.all[nextFocusIndex].focus();
}
}
</script>
</head>
<本文>
<input id="A" name="A" type="text" />
<input id="B" name="B" type="text" />
<input id="C" name="C" type="text" />
<input id="D" name="D" type="text" />
<input id="E" name="E" type="text" />
<select id="S1" name="S1">
<オプション>1</オプション>
<オプション>2</オプション>
<オプション>3</オプション>
<オプション>4</オプション>
<オプション>5</オプション>
</選択>
<select id="S2" name="S2">
<オプション>1</オプション>
<オプション>2</オプション>
<オプション>3</オプション>
<オプション>4</オプション>