table如何用方向鍵進(jìn)行移動(dòng)文本框input聚焦點(diǎn)(完整代碼)
當(dāng)前位置:點(diǎn)晴教程→知識(shí)管理交流
→『 技術(shù)文檔交流 』
:table如何用方向鍵進(jìn)行移動(dòng)文本框input聚焦點(diǎn)(完整代碼) <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> </head>
<body> <table class="table table-bordered border-primary mt-2 table-responsive" id="tablePop"> <tr class="m-0 p-0"> <td class="m-0 p-0"><input class="form-control m-0 p-0" type="text" style="" value="" readonly></td> <td class="m-0 p-0"><input class="form-control m-0 p-0" type="text" style="" value="" readonly></td> <td class="m-0 p-0"><input class="form-control m-0 p-0" type="text" style="" value="" readonly></td> <td class="m-0 p-0"><input class="form-control m-0 p-0" type="text" style="" value="" readonly></td> </tr> <tr class="m-0 p-0"> <td class="m-0 p-0"><input class="form-control m-0 p-0" type="text" style="" value=""></td> <td class="m-0 p-0"><input class="form-control m-0 p-0" type="text" style="" value=""></td> <td class="m-0 p-0"><input class="form-control m-0 p-0" type="text" style="" value=""></td> <td class="m-0 p-0"><input class="form-control m-0 p-0" type="text" style="" value=""></td> </tr> </table> </body>
<script> //全局變量記錄行列索引 var rows_count; var cols_count; //向左移動(dòng) function moveLeft(r,c,tableId){ var obj = document.getElementById(tableId); if (c>0) {c=c-1;} obj.rows[r].cells[c].childNodes[0].focus(); } //向右移動(dòng) function moveright(r,c,tableId){ var obj = document.getElementById(tableId); if(c<obj.rows[r].cells.length){c=c+1;} obj.rows[r].cells[c].childNodes[0].focus(); } //向上移動(dòng) function moveup(r,c,tableId){ var obj = document.getElementById(tableId); if(r>0)r=r-1; obj.rows[r].cells[c].childNodes[0].focus(); } //向下移動(dòng) function movedown(r,c,tableId){ var obj = document.getElementById(tableId); if(r<obj.rows.length){r=r+1;} obj.rows[r].cells[c].childNodes[0].focus(); } /** * @function 獲取Table單元格Input的值 * @param {string} 參數(shù) tableId * @returns 返回?cái)?shù)組 * @desription 說(shuō)明:參數(shù)為T(mén)able的id值 */ function getTableValue(tableId,keycode) { var obj = document.getElementById(tableId); //循環(huán)Table行數(shù) for (var i = 0; i < obj.rows.length; i++) {
for (var j = 0; j < obj.rows[i].cells.length; j++) { if (obj.rows[i].cells[j].childNodes[0] == document.activeElement) { rows_count=i; cols_count=j; if(keycode==37){ moveLeft(rows_count,cols_count,tableId); beark; } if(keycode==38){ moveup(rows_count,cols_count,tableId); beark; } if(keycode==39){ moveright(rows_count,cols_count,tableId); beark; } if(keycode==40){ movedown(rows_count,cols_count,tableId); beark; } } } } } //全局監(jiān)聽(tīng)事件 document.onkeydown=function(e){ //對(duì)整個(gè)頁(yè)面監(jiān)聽(tīng) var keyNum=window.event ? e.keyCode :e.which; //按下左鍵 if(keyNum==37){ getTableValue("tablePop","37"); }
//向上鍵 if(keyNum==38){ getTableValue("tablePop","38");
} //右鍵 if(keyNum==39){ getTableValue("tablePop","39"); } //向下鍵 if(keyNum==40){ getTableValue("tablePop","40"); } } </script> </html> 該文章在 2023/6/8 16:48:25 編輯過(guò) |
關(guān)鍵字查詢(xún)
相關(guān)文章
正在查詢(xún)... |