最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Getting deleted character or text on pressing delete or backspace on a textbox - Stack Overflow

programmeradmin0浏览0评论

I have a text box, I want to get the deleted character when I press a backspace or delete key.

I have a key up event handler and i am capturing if the key is backspace. Now inside this I need to perform some tasks based on the key deleted. Please help.

I have a text box, I want to get the deleted character when I press a backspace or delete key.

I have a key up event handler and i am capturing if the key is backspace. Now inside this I need to perform some tasks based on the key deleted. Please help.

Share Improve this question asked Jun 9, 2013 at 2:23 SeekerSeeker 2,4736 gold badges50 silver badges84 bronze badges 1
  • Can you paste your current code? – Zorayr Commented Jun 9, 2013 at 2:28
Add a ment  | 

3 Answers 3

Reset to default 6

After making a little tweak for the getCursorPosition function in this thread, you can get the characters deleted by tracking the current cursor selection.

The code handles the following conditions:

  1. Type and then backspace at the end.
  2. Move cursor in the middle of the text and delete/backspace.
  3. Select a piece of text and then delete/backspace.
$.fn.getCursorPosition = function() {
    var el = $(this).get(0);
    var pos = 0;
    var posEnd = 0;
    if('selectionStart' in el) {
        pos = el.selectionStart;
        posEnd = el.selectionEnd;
    } else if('selection' in document) {
        el.focus();
        var Sel = document.selection.createRange();
        var SelLength = document.selection.createRange().text.length;
        Sel.moveStart('character', -el.value.length);
        pos = Sel.text.length - SelLength;
        posEnd = Sel.text.length;
    }
    // return both selection start and end;
    return [pos, posEnd];
};

$('#text').keydown(function (e) {
    var position = $(this).getCursorPosition();
    var deleted = '';
    var val = $(this).val();
    if (e.which == 8) {
        if (position[0] == position[1]) {
            if (position[0] == 0)
                deleted = '';
            else
                deleted = val.substr(position[0] - 1, 1);
        }
        else {
            deleted = val.substring(position[0], position[1]);
        }
    }
    else if (e.which == 46) {
        var val = $(this).val();
        if (position[0] == position[1]) {

            if (position[0] === val.length)
                deleted = '';
            else
                deleted = val.substr(position[0], 1);
        }
        else {
            deleted = val.substring(position[0], position[1]);
        }
    }
    // Now you can test the deleted character(s) here
});

And here is Live Demo

You could use the keydown event handler instead so that the last character to be deleted is still available:

$('textarea').on('keydown',function(e) {
    var deleteKeyCode = 8,
        value = $(this).val(),
        length = value.length,
        lastChar = value.substring(length-1, length);

    if (e.which === deleteKeyCode) {
        alert(lastChar); 
    }
});

Live Demo

$('input').keydown(function(e){
    $(this).data('prevVal', $(this).val());   
}).keyup(function(e){
    if(e.keyCode === 8) {//delete
        var ele = $(this); 
        var val = ele.data('prevVal'); 
        var newVal = ele.val(); 
        var removedChar = val.substring(val.length-1);
        alert(removedChar); 
    }
}); 
发布评论

评论列表(0)

  1. 暂无评论