detect value change in input tag with vanilla javascript and MutationObserver

后端 未结 4 1079
一整个雨季
一整个雨季 2020-11-29 06:10

I want to detect when text/value change in input field. Even if I change the value with js, I want to detect that changes.

Here\'s what I\'ve tried so far in demo in

4条回答
  •  情书的邮戳
    2020-11-29 06:37

    To understand what is going on is necessary to clear up the difference between attribute (content attribute) and property (IDL attribute). I won't expand on this as in SO there are already excellent answers covering the topic:

    • Properties and Attributes in HTML
    • .prop() vs .attr()
    • What is happening behind .setAttribute vs .attribute=?

    When you change the content of a input element, by typing in or by JS:

    targetNode.value="foo";
    

    the browser updates the value property but not the value attribute (which reflects the defaultValue property instead).

    Then, if we look at the spec of MutationObserver, we will see that attributes is one of the object members that can be used. So if you explicitly set the value attribute:

    targetNode.setAttribute("value", "foo");
    

    MutationObserver will notify an attribute modification. But there is nothing like properties in the list of the spec: the value property can not be observed.

    If you want to detect when an user alters the content of your input element, the input event is the most straightforward way. If you need to catch JS modifications, go for setInterval and compare the new value with the old one.

    Check this SO question to know about different alternatives and its limitations.

提交回复
热议问题