onkeyup - 当用户释放按键时

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <script>
  5. function myFunction() {
  6. var x = document.getElementById("fname");
  7. x.value = x.value.toUpperCase();
  8. }
  9. </script>
  10. </head>
  11. <body>
  12.  
  13. <p>当用户在输入字段中释放键时,将触发一个函数。该函数将字符转换为大写。</p>
  14. 请输入您的姓名:
  15. <input type="text" id="fname" onkeyup="myFunction()">
  16.  
  17. </body>
  18. </html>