如何使用脚本重新加载具有不同ajax数据源的jstree
在我的情况下,
有关数据源的代码部分如下所示:
“json_data”:{ “阿贾克斯”:{ “异步”:假, "url" : "setup/locationTreeJson.htm?id=-1" } ,
在同一页面上,这是一个元素 目标是当我改变值时, 然后使用一些javascript来更改jstree的数据源,例如:
“setup/locationTreeJson.htm?id=[THE_VALUE_FROM_'select element']”
然后重新加载jstree以显示不同的数据
,那么我该怎么做呢?
此致
In my situation,
the part of the code about data source like this:
"json_data" : {
"ajax" : {
"async" : false,
"url" : "setup/locationTreeJson.htm?id=-1"
}
}
and on the same page,this is a element,
the goal is when i change the value,
then use some javascript to change the datasource of the jstree like:
"setup/locationTreeJson.htm?id=[THE_VALUE_FROM_'select element']"
then reload the jstree to display the different data
so, how can I do like this?
best regards
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看更多来源会有所帮助。没有它我就不能太具体。
我认为主要问题是稍后访问 json_data 以便重新加载,对吗?
It would help to see some more source. I can't get too specific without it.
I think the main issue is accessing
json_data
later for the reload, correct?