4
我希望能夠做到這一點有沒有辦法在調用對象的未定義函數時調用自定義函數?
var o = {
};
o.functionNotFound(function(name, args) {
console.log(name + ' does not exist');
});
o.idontexist(); // idontexist does not exist
我覺得這個功能的確存在,但我無法找到它。
請查看此文章:http://stackoverflow.com/questions/8283362/capture-method-missing-in-javascript-and-do-some-logic – 2011-12-26 05:35:18