我正在使用jstree
我构建一棵树,叶节点包含href,然后在同一页面的iFrame中打开该href。这是通过在jstree中选择一个节点时绑定到该函数的功能来完成的,该功能检查该节点是否具有真实href,然后相应地修改iFrame,否则它将打开该节点。
<div class="container-fluid">
<div class="row">
<div class="col">
<div id='songchanges'>
<ul>
<li id='phtml_1'>
<a href='#'>E:\Melco\TestMusic\TestMusic\TestMusic\WAV\Music\Dead Inside\No.4\</a>
<ul>
<li id="phtml_2">
<a href="FixSongsReport00440_body_aBE9p7eQo0baClCFB6BhPQ==.html"
target="_blank">
Flower
</a>
</li>
</ul>
</li>
</ul>
</div>
</div>
<div class="col-8">
<iframe id="processingResults" name="processingResults"
style="border:none; width:100%;height:500px">
</iframe>
</div>
</div>
</div>
<script>
$(function ()
{
$('#songchanges')
.jstree
(
{
'plugins' : ['themes','html_data','ui','cookie'],
'core' : { 'initially_open' : [ 'phtml_1' ] }
}
)
.bind('select_node.jstree',
function (e, data)
{
var href = data.node.a_attr.href;
var iframe = document.getElementById("processingResults");
if(href!='#')
{
iframe.src = href;
}
else
{
$(this).jstree('toggle_node', data.node);
}
}
);
}
);
</script>
这很好用,但是第一次显示页面时,我不希望iframe为空,所以我希望jstree自动打开第一个叶子节点并触发函数以加载iFrame。
我该怎么做?
答案 0 :(得分:0)
在树准备好之后,可以使用 ready.jstree 事件处理程序选择一个节点。树实例上的select_node函数将触发select_node事件。
$('#songchanges').jstree(
{
'plugins': ['themes', 'html_data', 'ui', 'cookie'],
'core': { 'initially_open': ['phtml_1'] }
}
).on('select_node.jstree',
function (e, data) {
var href = data.node.a_attr.href;
var iframe = document.getElementById("processingResults");
if (href != '#') {iframe.src = href; }
else { $(this).jstree('toggle_node', data.node); }
}
).on('ready.jstree', function (e, data) {
var leaf = null;
var getFirstLeaf = function (id) {
var node = data.instance.get_node(id);
if(node.children.length > 0){
return getFirstLeaf(node.children[0]);
}
return data.instance.select_node(id); //Triggers select_node event
};
getFirstLeaf('phtml_1'); // Start from the root node id
});