亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

onkeypress字符按鍵兼容所有瀏覽器使用介紹

 更新時(shí)間:2013年04月24日 16:59:12   作者:  
使用onkeypress字符按鍵兼容所有瀏覽器,感興趣的朋友可以參考下,希望對(duì)你學(xué)習(xí)js事件有所幫助
復(fù)制代碼 代碼如下:

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;
};
};

相關(guān)文章

最新評(píng)論