javascript 屏蔽按键事件

if(event.keyCode == 13)
{
    event.returnValue = false;
}
屏蔽回车事件。其它按键类似。

原文地址:https://www.cnblogs.com/brawei/p/444678.html