欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

onkeypress字符按键兼容所有浏览器使用介绍_javascript技巧

程序员文章站 2022-04-29 23:33:15
...
复制代码 代码如下:

document.onkeypress = function( e ){
alert( getCharCode( e ) );
};
function getCharCode( e ){
var e = e || window.event;
if( typeof e.charCode == "number" ){
return e.charCode;
}else{
return e.keyCode;
};
};