最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

html - How do I detect when input value changes real-time in JavaScript? - Stack Overflow

programmeradmin1浏览0评论

I'm trying to get my input field element to remove a class immediately after the input value changes. Currently, I'm able to detect the changes and remove the class 'invalid', but only after the input field is inactive. Here's my code;

fieldsArr.forEach(el => {
            el.addEventListener('change', function() {
                this.classList.remove('invalid');
            });
        });

I'm trying to get my input field element to remove a class immediately after the input value changes. Currently, I'm able to detect the changes and remove the class 'invalid', but only after the input field is inactive. Here's my code;

fieldsArr.forEach(el => {
            el.addEventListener('change', function() {
                this.classList.remove('invalid');
            });
        });
Share Improve this question asked Feb 22, 2020 at 15:53 KennethKenneth 431 gold badge1 silver badge4 bronze badges 8
  • 9 Instead of listening for change, listen for input – blex Commented Feb 22, 2020 at 15:54
  • "Javascript" and "real-time" don't really belong in a sentence together.... – Jared Smith Commented Feb 22, 2020 at 15:58
  • 1 @JaredSmith what do you mean by that? JavaScript allows real-time updates in many cases, for example - this website, by using WebSockets. – DaCurse Commented Feb 22, 2020 at 15:59
  • 1 @Jared JavaScript is one of too few languages that is absolutely real-time it uses the so called JIT-piler, which means not only does it operate in real-time with the code supplied but also with the code it has generated and and when it es to events, all emitters are real-time and so are the freaking event handlers. JavaScript's original name was Live Script, for a reason! – Bekim Bacaj Commented Feb 22, 2020 at 16:05
  • 2 @JaredSmith So you're basically nitpicking and referring to a very specific detail, sure bud. – DaCurse Commented Feb 22, 2020 at 22:59
 |  Show 3 more ments

2 Answers 2

Reset to default 13

Use the input event instead, as the name suggests it would fire each time an input is made, see this example on how to use the event:

let inputElem = document.querySelector('input');

inputElem.addEventListener('input', () => {
  console.log(inputElem.value); // Log the new value after an input is made
});
<input />

If you want to listen for events, your elemet should be extended from EventEmitter.

发布评论

评论列表(0)

  1. 暂无评论