fmpq.com
源代码:
点击运行
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Fmpq教程(fmpq.com)</title> </head> <body> <p>在输入框中输入键盘上的字符获取按下字母的 Unicode 字符代码。</p> <input type="text" size="40" onkeypress="myFunction(event)"> <p id="demo"></p> <script> /* 在实例中,我们使用了支持多浏览器的方法,因为 keyCode 属性无法再 Firefox 浏览器中工作。但是 which 属性可以。 如果浏览器支持 event.which 则使用 event.which,否则使用 event.keyCode */ function myFunction(event) { var x = event.which || event.keyCode; document.getElementById("demo").innerHTML = " Unicode 值为: " + x; } </script> </body> </html>
运行结果