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

后端 未结 3 1789
名媛妹妹
名媛妹妹 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

    If you can't find a combination of events that cover all cases, you may want to use setInterval(function() {... }, period). You could play around with the period to see how well this works.

提交回复
热议问题