Uncaught TypeError: ((x.event.special[i.origType] || (intermediate value)).handle || i.handler).apply is not a function
$('body').on('click', '.my-button', foo.bar2);
出现上面的报错信息是由于
我打字时,写成了
$('body').click('click','.delete_item',function(e){})
当我打算输入时:
$('body').on('click','.delete_item',function(e){})

博客提到出现Uncaught TypeError: ((x.event.special[i.origType] || (intermediate value)).handle || i.handler).apply is not a function报错信息,原因是打字时出现失误,但未明确具体失误情况。

被折叠的 条评论
为什么被折叠?



