国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > JavaScript > 正文

按下Enter焦點(diǎn)移至下一個(gè)控件的實(shí)現(xiàn)js代碼

2019-11-20 21:29:12
字體:
供稿:網(wǎng)友
復(fù)制代碼 代碼如下:

<html>
<head>
<title>Enter2Tab</title>
<script type="text/javascript">
window.onload=function(){
var list = new Array();
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=="button")
{
document.all[list[list.length-1]].setAttribute("nextFocusIndex",i);
document.all[list[list.length-1]].onkeydown=JumpToNext;
break;
}
}
document.all[list[0]].focus();
}
function JumpToNext(){
if(event.keyCode==13)
{
var nextFocusIndex=this.getAttribute("nextFocusIndex");
document.all[nextFocusIndex].focus();
}
}
</script>
</head>
<body>
<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">
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
</select>
<select id="S2" name="S2">
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 团风县| 南乐县| 宣恩县| 米泉市| 潮安县| 新沂市| 安顺市| 桦南县| 华蓥市| 富宁县| 金塔县| 东港市| 资溪县| 彭山县| 呼图壁县| 延津县| 宣汉县| 巫溪县| 海阳市| 安新县| 江川县| 新密市| 乌鲁木齐市| 陆良县| 白河县| 苏尼特左旗| 敖汉旗| 乌拉特后旗| 沙田区| 五莲县| 项城市| 广昌县| 赞皇县| 阿勒泰市| 青河县| 弥勒县| 白水县| 偏关县| 惠安县| 清新县| 壤塘县|