大家好~
最近遇到 Uncaught TypeError: $(...).on is not a function這種類型的錯誤,
起源是參考
http://goo.gl/W3CniV
此網站想學寫to do list
但於todo.js中加入自己的function並呼叫了todo.js中的runBind()
runBind()程式碼僅如下這樣
function runBind()
{
$('.destroy').on('click', function(e)
{
$currentListItem = $(this).closest('li');
$currentListItem.remove();
});
}
於原本todo.js呼叫runBind()的地方卻是正常的。
但於自己的function中呼叫卻會出現錯誤。
就出現標題這類型的錯誤,上網爬了一些文章,但摸不著頭緒。
想請問這類型的問題該怎麼解決呢?