Catching all changes to the contents of an input box using Javascript/jQuery

后端 未结 3 1756
名媛妹妹
名媛妹妹 2021-01-13 20:37

I have a page with an input box, and a function that processes the value of this input box and produces piece of text. I want this text to always be up to date in relation t

3条回答
  •  无人共我
    2021-01-13 21:15

    In non-IE browsers, you can handle the input event.
    In IE, you can handle the propertychange event.

    Demo (works in all browsers)

提交回复
热议问题