我在追踪jquery treetable时遇到了问题。我没有看到任何jquery绑定 函数,但当我单击箭头图标时,它将调用该方法,如下所示:
$.fn.treetable = function(method) {
if (methods[method]) {
return methods[method].apply(this, Array.prototype.slice.call(arguments, 1));
} else if (typeof method === 'object' || !method) {
return methods.init.apply(this, arguments);
} else {
return $.error("Method " + method + " does not exist on jQuery.treetable");
}
};
但我没有看到任何调用它的函数。 另一个代码片段来自html,我看到了这个
<span class="indenter" style="padding-left: 0px;"><a href="#" title="Expanding"> </a></span>
我无法弄清楚它是如何工作的,任何人都知道答案,非常感谢。
答案 0 :(得分:0)
它确实使用jquery来绑定事件。 如下:
target.off("click.treetable").on("click.treetable", handler);