我在樹視圖中添加了復選框,但節點(父或子...)與添加的復選框之間沒有關系
我想要當我單擊節點或在輸入時選中復選框并同時打開該節點的子節點串列,
如果我再次單擊節點(父節點或子節點...)或輸入,我取消選中輸入并關閉該節點的子節點串列
這是我的代碼
$(function () {
$('.tree li:has(ul)').addClass('parent_li').find(' > span').attr('title', 'Collapse this branch');
var extra = $(".tree li.parent_li > span")
.parent("li.parent_li")
.find(" > ul > li");
extra.hide("fast");
$('.tree li.parent_li > span').on('click', function (e) {
var children = $(this).parent('li.parent_li').find(' > ul > li');
if (children.is(":visible")) {
children.hide('fast');
$(this).attr('title', 'Expand this branch').find(' > i').addClass('icon-plus-sign').removeClass('icon-minus-sign');
} else {
children.show('fast');
$(this).attr('title', 'Collapse this branch').find(' > i').addClass('icon-minus-sign').removeClass('icon-plus-sign');
}
e.stopPropagation();
});
});
.tree {
min-height:20px;
padding:19px;
margin-bottom:20px;
background-color:#fbfbfb;
border:1px solid #999;
-webkit-border-radius:4px;
-moz-border-radius:4px;
border-radius:4px;
-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.05);
-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.05);
box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.05)
}
.tree li {
list-style-type:none;
margin:0;
padding:10px 5px 0 5px;
position:relative
}
.tree li::before, .tree li::after {
content:'';
left:-20px;
position:absolute;
right:auto
}
.tree li::before {
border-left:1px solid #999;
bottom:50px;
height:100%;
top:0;
width:1px
}
.tree li::after {
border-top:1px solid #999;
height:20px;
top:25px;
width:25px
}
.tree li span {
-moz-border-radius:5px;
-webkit-border-radius:5px;
border:1px solid #999;
border-radius:5px;
display:inline-block;
padding:3px 8px;
text-decoration:none
}
.tree li.parent_li>span {
cursor:pointer
}
.tree>ul>li::before, .tree>ul>li::after {
border:0
}
.tree li:last-child::before {
height:30px
}
.tree li.parent_li>span:hover, .tree li.parent_li>span:hover ul li span {
background:#eee;
border:1px solid #94a0b4;
color:#000
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<link href="https://netdna.bootstrapcdn.com/twitter-bootstrap/2.3.1/css/bootstrap-combined.min.css" id="theme" rel="stylesheet">
<div class="tree well">
<ul>
<li>
<span> <input type="checkbox" id="test1" name="test1"> Parent</span>
<ul>
<li>
<span><input type="checkbox" id="test2" name="test2"> Child</span>
<ul>
<li>
<span><input type="checkbox" id="test3" name="test3"> Grand Child</span>
<ul>
<li>
<span><input type="checkbox" id="test3" name="test3"> Grand Grand Child</span>
<ul>
<li>
<span><input type="checkbox" id="test3" name="test3"> Grand Grand Grand Child</span>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
<li>
<span><input type="checkbox" id="test4" name="test4"> Child</span>
<ul>
<li>
<span><input type="checkbox" id="test4" name="test4"> Grand Child</span>
</li>
<li>
<span><input type="checkbox" id="test5" name="test5">Grand Child</span>
<ul>
<li>
<span><input type="checkbox" id="test6" name="test6"> Great Grand Child</span>
<ul>
<li>
<span><input type="checkbox" id="test7" name="test7">Great great Grand Child</span>
</li>
<li>
<span><input type="checkbox" id="test8" name="test8"> Great great Grand Child</span>
</li>
</ul>
</li>
<li>
<span><input type="checkbox" id="test9" name="test9">Great Grand Child</span>
</li>
<li>
<span><input type="checkbox" id="test10" name="test10"> Great Grand Child</span>
</li>
</ul>
</li>
<li>
<span><input type="checkbox" id="test11" name="test11"> Grand Child</span>
</li>
</ul>
</li>
</ul>
</li>
<li>
<span><input type="checkbox" id="test12" name="test12"> Parent2</span>
<ul>
<li>
<span><input type="checkbox" id="test13" name="test13"> Child</span>
</li>
</ul>
</li>
</ul>
</div>
這是一個 JSFiddle 鏈接:https ://jsfiddle.net/daizdev/q5hwg0yj/13/
uj5u.com熱心網友回復:
添加$(this).find("input").removeAttr("checked")和$(this).find("input").prop("checked", "true")設定和洗掉選中的屬性:
$(".tree li.parent_li > span").on("click", function (e) {
var children = $(this).parent("li.parent_li").find(" > ul > li");
if (children.is(":visible")) {
$(this).find("input").removeAttr("checked");/*----------------*/
children.hide("fast");
$(this)
.attr("title", "Expand this branch")
.find(" > i")
.addClass("icon-plus-sign")
.removeClass("icon-minus-sign");
} else {
$(this).find("input").prop("checked", "true");/*----------------*/
children.show("fast");
$(this)
.attr("title", "Collapse this branch")
.find(" > i")
.addClass("icon-minus-sign")
.removeClass("icon-plus-sign");
}
e.stopPropagation();
});
轉載請註明出處,本文鏈接:https://www.uj5u.com/ruanti/468848.html
標籤:javascript jQuery 阿贾克斯 复选框 树视图
下一篇:將元素拖動為視窗
