How can I disabling backspace key press on all browsers?

后端 未结 9 1139
一向
一向 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:35

    The most Simple thing you can do is add the following one line in the very first script of you page at very first line

    window.history.forward(1);
    

提交回复
热议问题