JavaScript 拖拽排序插件,可配置选项非常多
浏览器支持
预览地址:前往
https://www.liziwu.net/templates/hortree/index.html
使用方法:
[
{
"description": "Element ROOT",
"children": [
{
"description": "Element 1",
"children": [
{
"description": "Element 1.1",
"children": []
},
{
"description": "Element 1.2",
"children": [
{
"description": "Element 1.2.1",
"children": []
}
]
}
]
},
{
"description": "Element 2",
"children": [
{
"description": "Element 2.1",
"children": []
},
{
"description": "Element 2.2",
"children": []
}
]
},
{
"description": "Element 3",
"children": [
{
"description": "Element 3.1",
"children": []
},
{
"description": "Element 3.2",
"children": []
},
{
"description": "Element 3.3",
"children": [
{
"description": "Element 3.3.1",
"children": []
},
{
"description": "Element 3.3.2",
"children": []
}
]
}
]
}
]
}
]
$.getJSON('data.json', function (jsonData) {
$('#my-container').hortree({
data: jsonData
});
});