没有表格的默认按钮

时间:2019-05-08 15:36:45

标签: javascript html vue.js

当用户在键盘上按Intro时,我需要触发一个默认按钮,但是此Vue.js页面没有表单。我应该如何进行?

1 个答案:

答案 0 :(得分:0)

不确定介绍的意思吗?我假设您的意思是按下“输入”键时? 尝试使用以下代码lesson

// Get the input field
var input = document.getElementById("myInput");

// Execute a function when the user releases a key on the keyboard
input.addEventListener("keyup", function(event) {
  // Number 13 is the "Enter" key on the keyboard
  if (event.keyCode === 13) {
    // Cancel the default action, if needed
    event.preventDefault();
    // Trigger the button element with a click
    document.getElementById("myBtn").click();
  }
});