0

フィールドに2つの数字を入力した後、追加/してカーソルをホームに設定します。

私の家の意味は、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追加して移動できます。入力フィールドの開始はこれを見てください)?ただし、to beのイベントを使用すると、次のことができます。/Homekeypress22/

$(".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 に答える