欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

在表格中按上下左右键移动光标

程序员文章站 2022-07-03 17:50:55
//将input中加入属性data-col='x-y'function getXy(el){ if(el != null&&el.length != 0 && el.attr("data-col")!= null){ var attr = el.attr("data-col"); var temp ......
//将input中加入属性data-col='x-y'
function getxy(el){
if(el != null&&el.length != 0 && el.attr("data-col")!= null){
var attr = el.attr("data-col");
var temp = attr.split("-");
var arr = [];
arr.push(parseint(temp[0]));
arr.push(parseint(temp[1]));
return arr;
}
return [1,4];
}
function ismove(el){
var isreadonly = el.attr("readonly");
var isdisabled = el.attr("disabled");
var ishide = el.parent().parent().css("display");
return isreadonly=="readonly"||isdisabled=="disabled"||"none"==ishide;
}
function moveleft(row,line){
if(line <= 1){
return
}
var el = $("input[data-col='"+row+"-"+(--line)+"']");
console.log(el);
if(ismove(el)){//如果选中元素是readonly或者disabled=true则减少一位继续使用此方法发
moveleft(row,line);
return;
}
el.focus();
}
function moveright(row,line){
if(line >= 13){
return
}
var el = $("input[data-col='"+row+"-"+(++line)+"']");
console.log(el);
if(ismove(el)){//如果选中元素是readonly或者disabled=true则减少一位继续使用此方法发
moveright(row,line);
return;
}
el.focus();
}
function movetop(row,line){
if(row <= 1){
return
}
var el = $("input[data-col='"+(--row)+"-"+(line)+"']");
console.log(el);
if(ismove(el)){//如果选中元素是readonly或者disabled=true则减少一位继续使用此方法发
movetop(row,line);
return
}
el.focus();
}
function movedown(row,line){
var max = $("#tbodymx").find("tr").length;
if(row >= max){
return
}
var el = $("input[data-col='"+(++row)+"-"+(line)+"']");
console.log(el);
if(ismove(el)){//如果选中元素是readonly或者disabled=true则减少一位继续使用此方法发
movedown(row,line);
return
}
el.focus();
}
document.onkeydown=function(e){
var e=window.event||e;
if(e.keycode!= 37&&e.keycode!= 38&&e.keycode!= 39&&e.keycode!= 40){
return;
}
var el = $("input:focus");

if(el==null || el.length == 0 || el.attr("data-col")==null){
$("[data-col='1-4']").focus();
    return;
} //根据光标所在的元素获得一个两位长度的数组,第一个是行,第二个是列,如果光标不存在元素或者元素不是指定元素则光标默认到第一个元素上面 var arr = getxy(el); var row = arr[0]; var line = arr[1]; if(line == 2||line == 1||line==3||line==4){ $("#spmx").scrollleft(0); } switch(e.keycode){ case 37: //左 //如果列为0,则无需变动光标位置,否则找到列比本元素的列小一个的位置 moveleft(row,line); break; case 38: //上 //如果行为0则无需变动,否则移动到比当前行少一位的位置 movetop(row,line); break; case 39: //右 //如果列为最大值则不需变动,否则向右移动一个位置 moveright(row,line); break; case 40: //下 //如果行为最大值则无需变动,否则向下移动一个位置 movedown(row,line); break; }}