简单教程
提交运行
代码编辑器:
<p>在输入框中输入键盘上的字符获取按下字母的 Unicode 字符代码和 Unicode 键代码 </p> <input type="text" size="40" onkeypress="myFunction(event)"> <p id="demo"></p> <p><strong>注意:</strong> IE8 及更早版本浏览器不支持 charCode 属性</p> <script> function myFunction(event) { var x = event.charCode; document.getElementById("demo").innerHTML = " Unicode 值为:" + x; } </script>
运行结果: