Maximum call stack size exceeded error

后端 未结 30 2996
独厮守ぢ
独厮守ぢ 2020-11-21 23:51

I am using a Direct Web Remoting (DWR) JavaScript library file and am getting an error only in Safari (desktop and iPad)

It says

Maximum call

30条回答
  •  执笔经年
    2020-11-22 00:40

    In my case I by mistake i have assigned same variable name , and to val function "class_routine_id"

    var class_routine_id = $("#class_routine_id").val(class_routine_id);
    

    it should be Like :

     var class_routine_id = $("#class_routine_id").val(); 
    

提交回复
热议问题