jQuery .change() event not firing in IE

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

    Please try with using each instead of change / click , which is working fine even first time in IE as well as other browsers

    Not Working a first time

    $("#checkboxid").change(function () {
    
    });
    

    Working fine even first time

    $("#checkboxid").each(function () {
    
    });
    

提交回复
热议问题