如何在树节点中添加两个复选框?

时间:2019-03-29 07:21:36

标签: jquery jquery-easyui

试图在离开节点中添加两个复选框,以此来渲染树

尝试这种方式:

$('#form').tree({
            data: json,
            formatter:function(node,row){
                var s = node.text;
                if (typeof (node.iconCls) !== "undefined") {
                    console.log('csv');
                }
                    if (node.children){
                        s += '&nbsp;<span style=\'color:blue\'>(' + node.children.length + ')</span>';
                    }
                    return s;
                }
        });

https://www.jeasyui.com/documentation/tree.php

0 个答案:

没有答案