标签:style blog color io ar div cti log
window.onload = function(){ document.onkeypress = function(evt){ alert(String.fromCharCode(getCharCode(evt))); } } function getCharCode(evt){ var e = evt || window.event; if(typeof e.charCode == ‘number‘){ return e.charCode; }else{ return e.keyCode; } }
标签:style blog color io ar div cti log
原文地址:http://www.cnblogs.com/oceanden/p/3928046.html