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,然后设置样式。
以上是关于easyui 怎么获取选择子节点及父节点 的值的主要内容,如果未能解决你的问题,请参考以下文章
XML 使用 SelectNodes 来获取具有空值子节点的节点
如何获取jquery easyui Tree的 (1)某一节点下的所有子节点,(2)某节点下的一级节点