- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在 JSTree 和 Ajax 方面遇到了一个奇怪的问题。
我通过 Ajax/PHP 请求生成我的树,该请求使用...生成 HTML(带有 UL、LI、A 标签)
$.ajax({
url: 'ajaxTreeView.php?method=edit&partid='+partId,
cache: false,
success: function(tree)
{
$('#treeViewer').html(tree);
}});
并使用...激活代码上的 JStree
options =
{
"core": { animation: 120 },
"themes": { theme: 'corral', dots: true },
"types":
{
"types":
{
"parent": { "icon": { "image": "images/custom/Legend/node_select.png" } },
"child": { "icon": { "image": "images/custom/Legend/node_select_child.png" } },
"current": { "icon": { "image": "images/custom/Legend/node.png" } }
}
},
"plugins": [ "html_data", "types", "themes", "ui", "contextmenu", "cookies" ],
"ui": { "select_limit" : 1 },
"cookies": { "save_selected" : false }
};
$("#tree").jstree(options);
我似乎无法轻松选择节点。我尝试了initial_select,但这似乎不起作用,而且也不理想,因为我经常想以编程方式选择节点。
我尝试使用...
$('#tree').jstree("select_node", '#ref565', true);
如果我通过超链接调用该函数,则此方法有效,但如果我在初始化 JStree 后调用该函数,则此方法无效。
我通过添加警报看到(所有这一切都发生在 Ajax Success 例程中)...
$('#treeViewer').html(tree);
$("#tree").jstree(options);
alert('test');
$('#tree').jstree("select_node", '#ref565', true);
...在警报开始之前树尚未渲染。
我添加了一个setTimeOut...
$('#treeViewer').html(tree);
$("#tree").jstree(options);
setTimeout(function() {selectNode(565);},1250);
$('#tree').jstree("select_node", '#ref565', true);
...这有效。
我显然是愚蠢的。我使用了错误的语法吗?为什么我必须设置延迟才能选择节点?
请帮忙。
最佳答案
如果您想在树加载后最初选择某些节点,则应该使用 initially_select
ui 的选项插入。您说您尝试过,但我没有看到您发布的示例代码中使用了它。您确定提供的 ID 正确吗?
要以编程方式选择节点,您需要等待要选择的节点首先出现在 DOM 中。我猜测绑定(bind)到 loaded.jstree 事件更正确,而不是使用超时回调,该事件应该在树完成加载并且所有树元素都在DOM,并在其中进行编程选择。
显示用法的示例代码:
$(function () {
$("#tree")
.jstree({
// List of active plugins
"plugins" : [
"ui"
],
// UI & core - the nodes to initially select and open will be overwritten by the cookie plugin
// the UI plugin - it handles selecting/deselecting/hovering nodes
"ui" : {
// this makes the node with ID node_4 selected onload
"initially_select" : [ "#ref565" ]
},
// the core plugin - not many options here
"core" : {
// just open those two nodes up
// as this is an AJAX enabled tree, both will be downloaded from the server
"initially_open" : [ "#ref565" ]
}
})
.bind("loaded.jstree", function (e, data) {
$('#tree').jstree("select_node", '#ref565', true);
})
});
关于jquery - JS 树 - select_node 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12817715/
今天有小伙伴给我留言问到,try{...}catch(){...}是什么意思?它用来干什么? 简单的说 他们是用来捕获异常的 下面我们通过一个例子来详细讲解下
我正在努力提高网站的可访问性,但我不知道如何在页脚中标记社交媒体链接列表。这些链接指向我在 facecook、twitter 等上的帐户。我不想用 role="navigation" 标记这些链接,因
说现在是 6 点,我有一个 Timer 并在 10 点安排了一个 TimerTask。之后,System DateTime 被其他服务(例如 ntp)调整为 9 点钟。我仍然希望我的 TimerTas
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用资料或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
我就废话不多说了,大家还是直接看代码吧~ ? 1
Maven系列1 1.什么是Maven? Maven是一个项目管理工具,它包含了一个对象模型。一组标准集合,一个依赖管理系统。和用来运行定义在生命周期阶段中插件目标和逻辑。 核心功能 Mav
我是一名优秀的程序员,十分优秀!