• 热门类别

当元素在 HTML 中获得用户输入时执行脚本?


使用

示例

<!DOCTYPE html>
<html>
   <body>
      <p>Write your name below:</p>
      <input type = "text" id = "myid" oninput="display()">
      <p id="test"></p>
      <script>
         function display() {
            var p = document.getElementById("myid").value;
            document.getElementById("test").innerHTML = "Your answer is " + p;
         }
      </script>
   </body>
</html>

1K+ 浏览量

开启你的 职业

完成课程获得认证

开始
广告