jQuery .change() event not firing in IE

后端 未结 5 1323
别跟我提以往
别跟我提以往 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:56

    I had the same issue: Below fix worked for me:

    Instead of: $("#ltv-dialog input").change( function() {

    I used: $('#ltv-dialog').on('input', function() {

提交回复
热议问题