我怎样才能做到这一点?我基本上想调用一个函数,一旦用户输入完信息,我便会从文本框中获取信息。即,在他们单击文本框后。我找不到执行此操作的明确方法。是否有用于事件/操作的API,您可以对每个输入执行什么操作?

最佳答案

尝试blur事件:

yourTextBox.onblur = function() {
    console.log(yourTextBox.value);
};


要么

yourTextBox.addEventListener('blur', function() {
    console.log(yourTextBox.value);
});


请参见documentation for the blur event on MDN here

09-19 03:56