如何跳过td中的隐藏输入类型并将焦点设置为下一个可见输入类型
这是供您参考的表格
HTML:
<table border="1" cellspacing="0" id="vitProb">
<tbody>
<tr>
<td>
<input type="text" name="" value="" id="" class="unitfocus0 ">
</td>
<td>
<label id="" class="centerlabeltext">0</label>
<input type="hidden" name="" id="" class="" value="0">
</td>
<td>
<input type="text" name="" value="" id="" class="unitfocus1 ">
</td>
<td>
<input type="text" name="" value="" id="" class="unitfocus2 ">
</td>
<td>
<input type="text" name="" value="" id="" class="unitfocus4 ">
</td>
<td>
<input type="text" name="" value="" id="" class="unitfocus5 ">
</td>
<td>
<input type="text" name="" value="" id="" class="unitfocus6 ">
</td>
</tr>
</tbody>
</table>
以下是js代码:
$(document).delegate('table#vitProb tbody tr td input ' ,"keydown",function(e) {
// get the code of the key that was pressed
var code = e.keyCode ? e.keyCode : e.which;
// varify that side key was pressed
if (code === 39) {
// get the next tr's input field, and set focus to it
var c=this.className;
var a=c.split("");
var m=a[9];
if(isNaN(m))
{ m=0;}
else
{m=parseInt(m)+1;}
var n="unitfocus"+m;
$(this).closest('td').next().find('input[text].'+n+'').focus();
return false;
}
else if (code === 37) {
// get the next tr's input field, and set focus to it
var c=this.className;
var a=c.split("");
var m=a[9];
m=parseInt(m)-1;
if(m==0){m=0;}else{m;}
;
var n="unitfocus"+m;
$(this).closest('td').prev().find('input.'+n+'').focus();
// prevent any default actions
return false;
}
});
如图所示,下一个箭头在第1年到第5年的第一个tr中工作,但是在第一个箭头键中,从分享到第一年不起作用
I Unit列在td中有隐藏的输入类型和标签
我认为因为隐藏字段箭头键不能从分享到第1年
如何跳过隐藏字段并前往下一个可见输入类型。
答案 0 :(得分:0)
您已经确定了下一个和上一个元素的类名。 无需调用next()或prev()方法。 这是一个JSFiddle,首先选择父tr,然后选择具有正确类的底层td:
这是我改变的一行:
$(this).parents('tr').find('input.'+n+'').focus();