欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

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)論