我在未调用功能(Kendo事件处理程序)方面遇到问题-我在下面突出显示了调试器。
FuncTwo中的第二个调试器没有被击中,我不确定为什么-有人可以提供帮助吗?谢谢。
Kendo事件:
// FuncOne is called fine
// FuncTwo is called, but not invoked?
$.extend(kendoOptions, { change: function (i) { FuncOne(i); FuncTwo(i); } });
FuncTwo:
function FuncTwo(i) {
// this is being hit
debugger;
return function (e) {
// this is not being hit
debugger;
}
}