21_文本框控制.html 586 B

12345678910111213141516171819202122
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Document</title>
  7. </head>
  8. <body>
  9. <input type="text" placeholder="请输入数字">
  10. <button>按钮</button>
  11. <script>
  12. var inp = document.querySelector("input");
  13. var btn = document.querySelector("button");
  14. btn.onclick = function(){
  15. // 获取文本框内的值
  16. var val = inp.value;
  17. console.log(val)
  18. inp.value = "";
  19. }
  20. </script>
  21. </body>
  22. </html>