How can I disabling backspace key press on all browsers?

后端 未结 9 1126
一向
一向 2020-12-15 10:01

I\'m trying to disable the backspace button on an order page in all cases except when a textarea or text input is an active element to prevent users from accidentally backin

9条回答
  •  失恋的感觉
    2020-12-15 10:47

    $(document).keydown(function(e) {
        var elid = $(document.activeElement).is('input');
        if (e.keyCode === 8 && !elid) {
            return false;
        }
    });
    

    Hope this might help you

提交回复
热议问题