Disable backspace and delete key with javascript in IE

前端 未结 4 722
面向向阳花
面向向阳花 2020-12-15 23:34

Anyone know how can I disable backspace and delete key with Javascript in IE? This is my code below, but seems it\'s not work for IE but fine for Mozilla.

on         


        
4条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-16 00:02

    This code cancels backspace action.

    window.onkeydown = function (event) {
    
        if (event.which == 8) { 
    
             event.preventDefault();   // turn off browser transition to the previous page 
    
                     // put here code you need 
    
            }; 
    
    };      
    

提交回复
热议问题