jQuery .change() event not firing in IE

后端 未结 5 1239
别跟我提以往
别跟我提以往 2021-01-17 17:19

I\'ve got a dialog that performs a calculation that is dependant on three input fields. When any of them are changed it checks whether they are all filled and if they are i

5条回答
  •  生来不讨喜
    2021-01-17 17:58

    As you are targeting text input elements, have you tried using a different event? So instead of change use, for example, keyup? $("#ltv-dialog input").keyup( function() {. This will fire after every keypress.

提交回复
热议问题