色婷婷狠狠18禁久久YY,CHINESE性内射高清国产,国产女人18毛片水真多1,国产AV在线观看

jquery進(jìn)度條樹(shù)狀插件

jQuery進(jìn)度條樹(shù)狀插件是一種非常實(shí)用且美觀的插件。它可以讓用戶通過(guò)一個(gè)樹(shù)狀圖形,清晰地了解任務(wù)的完成情況,同時(shí)顯示進(jìn)度條,更加直觀地呈現(xiàn)任務(wù)完成百分比。

//引入插件
<link rel="stylesheet" href="jquery.jstree.css" />
<script src="jquery.js"></script>
<script src="jquery.jstree.js"></script>
//初始化插件,并添加數(shù)據(jù)
<div id="jstree"></div>
<script>
$(function () {
$('#jstree').jstree({
'core' : {
'data' : [
{
"text" : "Task 1",
"state" : {
"opened" : true,
"selected" : true
},
"children" : [
{
"text" : "Step 1",
"progress": 0.5, //設(shè)置進(jìn)度百分比
"icon" : "glyphicon glyphicon-time" //設(shè)置圖標(biāo)
},
{
"text" : "Step 2",
"progress": 1,
"icon" : "glyphicon glyphicon-ok"
}
]
},
//更多任務(wù)
]
},
"plugins" : ["progress"]
});
});
</script>

除了顯示進(jìn)度條和任務(wù)完成情況,該插件還支持多項(xiàng)功能,如可選擇節(jié)點(diǎn)、可搜索節(jié)點(diǎn)、支持異步加載數(shù)據(jù)、設(shè)置節(jié)點(diǎn)自定義圖標(biāo)等。它還可以用于管理系統(tǒng)、項(xiàng)目進(jìn)度管理等場(chǎng)景。