0

我想在提交的追加中键入两个数字/并在主页中设置光标。

我家的意思是,Home键盘上的键: 在此处输入图像描述

我尝试:(在我的代码中运行 Home 键这个添加$

<input type="text" class="num" maxlength="2"/>
​
$(".num").keypress(function(e){
    var val = this.value;
    var value =  val + String.fromCharCode('36');
    (val.length == '2') ? $(this).val(value+'/') : '';
});​

演示:http: //jsfiddle.net/3ePxg/

怎么可能做到?

4

2 回答 2

0

2在输入中输入时,我们可以附加/并转到输入字段的开头(左侧):我不跟随Home键 - 你想用它发生什么(如果你的意思是把光标放在输入字段的开头看看这个)?但是,对于to bekeypress事件,我们可以这样做:22/

$(".num").on('keypress', function(e){
    if (e.keyCode == 50) {
        var input = $(e.target);
        input.val(input.val() + '2/');
        input.focus();
        e.target.setSelectionRange(0,0);
    }
});​

演示:jsfiddle

于 2012-12-07T17:04:33.087 回答
0

尝试这个:

js:

//based on script from here: http://stackoverflow.com/a/4085357/815386 -> http://blog.vishalon.net/index.php/javascript-getting-and-setting-caret-position-in-textarea
function setCaretPosition(ctrl, pos) {
    if (ctrl.setSelectionRange) {
        ctrl.focus();
        ctrl.setSelectionRange(pos, pos);
    }
    else if (ctrl.createTextRange) {
        var range = ctrl.createTextRange();
        range.collapse(true);
        range.moveEnd('character', pos);
        range.moveStart('character', pos);
        range.select();
    }
}

function GetCaretPosition(ctrl) {
    var CaretPos = 0; // IE Support
    if (document.selection) {
        ctrl.focus();
        var Sel = document.selection.createRange();
        Sel.moveStart('character', -ctrl.value.length);
        CaretPos = Sel.text.length;
    }
    // Firefox support
    else if (ctrl.selectionStart || ctrl.selectionStart == '0') CaretPos = ctrl.selectionStart;
    return (CaretPos);
}

$(".num").keyup(function(e) {
    var val = this.value;
    if (val.length >= '2') {
        var value = val.substr(0, 2);
        var pos=GetCaretPosition(this);
        $(this).val(value + '/');
        setCaretPosition(this, pos);
        console.log(GetCaretPosition(this));
        if (pos >= 2) {
            setCaretPosition(this, 0);
            return false;
        }
    }
});​

演示

于 2012-12-07T17:33:09.440 回答