test.html 216 B

123456789101112131415
  1. <html>
  2. <head>
  3. <script>
  4. </script>
  5. </head>
  6. <body>
  7. <input type="text" id="txtinput"/>
  8. <script>
  9. document.all.txtinput.addEventListener("keyup", function(e){
  10. debugger;
  11. })
  12. </script>
  13. </body>
  14. </html>