标签:des style blog http java io for ar 2014
官方的jquery.easyui.min.js已经实现了对实心圆点框id的获取,我们看官方如下代码:
如果我们让"_c0"的值变成“indeterminate”那么我们就能够得到想要的结果了,具体实现看如下代码:、
var nodes = $('#tt').tree('getChecked','indeterminate');
这样我们就能得到选中的实心圆点的id了 ,还有要得到选中的id,实现如下:
function getChecked(){ var nodes = $('#tt').tree('getChecked','indeterminate'); var nodes1 = $('#tt').tree('getChecked'); var s = ''; for(var i=0; i<nodes.length; i++){ if (s != ''){ s += ','}; s += nodes[i].id; } for(var i=0; i<nodes1.length; i++){ if (s != ''){ s += ','}; s += nodes1[i].id; } $("#info").text(s); }
关于easyui Tree取得选中节点的父级节点(得到选取实心圆点的id)
标签:des style blog http java io for ar 2014
原文地址:http://blog.csdn.net/abccyz/article/details/38843973