我正在使用jQuery花式樹來表示我的web應用程序中的一棵樹。jquery - 花式樹 - 沒有數據存在
https://github.com/mar10/fancytree
這裏是我的代碼如下所示。問題是,當源URL /文件/文件夾返回空列表時,我希望我的html顯示文本「找不到文檔」。我搜索了這個API,但是沒有辦法直接使用這個插件。
我是新來的webapps的世界。有人能指點我正確的方向嗎?
<div class="row" id="toprow">
<div class="col-md-4" id="treeContainer">
<h4>Choose a Document Type from the drop-down</h4>
<div id="tree">
</div>
</div>
</div>
<script>
$(function(){
$("#tree").fancytree({
source: {
url: "/documents/folders"
},
});
});
</script>
不錯..那成功了!非常感謝你。 – sethu