关于多输入框自动切换光标及粘贴功能(代码仅供参考可以直接用)
1 |
|
//简单的输入框切换光标代码如下:1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
$('#num_input input').keyup(function (event) {
// 删除往前 添加往后
var this_name = this.name;
// .trim()
if ($("#" + this_name).val().trim().length >= 4) {
$(this).next('input').focus();
}
if ($("#" + this_name).val().trim().length < 1) {
if (event.keyCode == 46 || event.keyCode == 8) {
$(this).prev('input').focus();
}
}
})
注:根据自身业务的需求上面两组代码任选一种即可。
1 |
|