码迷,mamicode.com
首页 > 其他好文 > 详细

Easyui Tree方法扩展 - getLevel(获取节点级别)

时间:2014-10-18 12:25:17      阅读:283      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   ar   sp   div   on   cti   

//扩展方法

$.extend($.fn.tree.methods, {
    getLevel:function(jq,target){
        var l = $(target).parentsUntil("ul.tree","ul");
        return l.length+1;
    }
});

//用法

var node = $().tree("getSelected");
var lv =  $().tree("getLevel",node.target);

 

Easyui Tree方法扩展 - getLevel(获取节点级别)

标签:style   blog   color   io   ar   sp   div   on   cti   

原文地址:http://www.cnblogs.com/hubing/p/4032828.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!