Javascript,渲染树列表中的对象

时间:2013-09-19 10:31:05

标签: javascript jquery-plugins treeview analysis

我尝试构建一个小工具,以便在浏览器中运行我的js结构。

我为此创建了一个gits:https://gist.github.com/M3kH/6615963

但是没有办法在没有崩溃的情况下在浏览器上工作。

  • 你认为我做错了什么?

  • 您认为Async方式会阻止浏览器崩溃吗?

  • 如何获取元素的属性是函数?我需要 执行了吗?

  • 我有一些像jquery插件中的情况,如:

    ;(function($, window, document, undefined) {
        $.fn.namePlugin = function(options) {
            options = $.extend( {}, $.fn.namePlugin.options,options );
            return this.each(function(){
                // This is the builder
                $.fn.namePlugin.options.functionA();
            });
        }
        // Here where I fill all the functions
        $.fn.namePlugin.options = { functionA: function(){} };
    });
    

    您认为我有一些方法可以将返回功能作为循环吗?

我想构建一个实用程序来获取函数列表,以便在第二时刻记录它。

提前致谢, 莫罗。

0 个答案:

没有答案