easyui 怎么获取选择子节点及父节点 的值

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了easyui 怎么获取选择子节点及父节点 的值相关的知识,希望对你有一定的参考价值。

参考技术A $('#combotree-scene-id').combotree(
url: "<c:url value='/scene/ajaxGetBizsystem?sceneType=$sceneType'/>",
checkbox:true,
multiple:true,
async:false,
method:'get',
onLoadSuccess:function(node, data)
formatComboTreeValue();
,
onCheck:function(node, checked)
formatComboTreeValue();
,
onClick:function(node, checked)
formatComboTreeValue();

);


function formatComboTreeValue()

var value = $('#combotree-scene-id').combotree('getText');
if(value.indexOf("根节点,") >= 0)
var endIndex = value.indexOf(',');
value = value.substring(endIndex+1);
$('#combotree-scene-id').combotree('setText', value);

本回答被提问者采纳

javascript怎么获取获取一个节点的所有子节点?

javascript怎么获取获取一个节点的所有子节点?

$(function () 
    $(".navbar-inverse li").each(function (index) 
        if ($(this).children().text().indexOf("主页") >= 0) 
            $(this).addClass("active");
        
    );
);

这个是获取ul下的li,然后设置样式。

参考技术A item.childNodes,然后遍历这个数组 参考技术B obj.children返回元素节点,不包括文本节点 参考技术C 子节点 .childNodes 注意最后的s父节点 .parentNode 因为父节点肯定只有一个 所有没有s

以上是关于easyui 怎么获取选择子节点及父节点 的值的主要内容,如果未能解决你的问题,请参考以下文章

easyui combotree获取选中的值

XML 使用 SelectNodes 来获取具有空值子节点的节点

如何获取jquery easyui Tree的 (1)某一节点下的所有子节点,(2)某节点下的一级节点

Jquery EasyUI Combotree根据选中的值展开所有父节点

easyui的tree节点的获取和选中

高手帮忙:sql 里怎样递归判断父节点和子节