首页javascriptkeyJavascript Event - 如何检查哪个事件火灾第一...

Javascript Event - 如何检查哪个事件火灾第一...

我们想知道如何检查哪个事件火灾第一。...

<html>
<body>
  <input type="text" id="url" />
    <script type='text/javascript'>
    
    var input = document.getElementById('url');
    input.onkeydown = function(e) {
      var key = e.keyCode || e.which;
        if (key == 13) {
           console.log("enter");
           window.location = input.value;
        }
    };
    </script>

</body>
</html>