-2

我有以下输入标签:

<input type="text" id="title" class="title" maxlength="20>

当用户键入时,我需要将“day”附加到框中文本的末尾。这是如何用 jQuery 完成的?
我试过这个:

$('#title').on('keyup', function() {
this.value = this.value+' day';
});

但它没有用。

4

1 回答 1

3

使用 jQuery 在末尾追加文本,然后将插入符号移动到所需位置:

$('#title').on('keyup', function(e) {
    // Ignore if backspace is pressed
    if(e.keyCode == 46){
       return false;
    }

    // Set the value based on the current value length
    // If it's longer than 3, "day" is already appended
    this.value = (this.value.length<3)?this.value+="day":this.value;

    // Move caret to the latest added character
    var caretPos = this.value.length-3;
     if(this.createTextRange) {
        var range = this.createTextRange();
        range.move('character', caretPos);
        range.select();
    }
    else {
        if(this.selectionStart) {
            this.focus();
            this.setSelectionRange(caretPos, caretPos);
        }
        else
            this.focus();
    }
});

现场工作的 jsFiddle 示例

于 2012-11-06T01:22:41.927 回答