78行為什么會報錯
效果出來了為什么 78行 ?activeRow.removeClass('active') 會報錯 報錯錯誤提示如下Uncaught TypeError: Cannot read property 'removeClass' of null
效果出來了為什么 78行 ?activeRow.removeClass('active') 會報錯 報錯錯誤提示如下Uncaught TypeError: Cannot read property 'removeClass' of null
2018-04-26
舉報
2018-04-28
81行才定義賦值的 activeRow = $(...),78行的activeRow是undefined的,當然不能調用了,81行往前移下