<!DOCTYPE html>
|
<html lang="en">
|
<head>
|
<meta charset="UTF-8"/>
|
<title>Title</title>
|
<link href="/js/ztree/css/zTreeStyle/zTreeStyle.css" rel="stylesheet"></link>
|
<script src="/js/jquery-1.4.4.min.js" type="text/javascript"></script>
|
<script src="/js/ztree/jquery.ztree.all.js"></script>
|
<script type="text/javascript">
|
<!--
|
var setting = {
|
check: {
|
enable: true
|
},
|
data: {
|
simpleData: {
|
enable: true
|
}
|
}
|
};
|
var zNodes =[
|
{ id:1, pId:0, name:"随意勾选 1", open:true},
|
{ id:11, pId:1, name:"随意勾选 1-1", open:true},
|
{ id:111, pId:11, name:"随意勾选 1-1-1"},
|
{ id:112, pId:11, name:"随意勾选 1-1-2"},
|
{ id:12, pId:1, name:"随意勾选 1-2", open:true},
|
{ id:121, pId:12, name:"随意勾选 1-2-1"},
|
{ id:122, pId:12, name:"随意勾选 1-2-2"},
|
{ id:2, pId:0, name:"随意勾选 2", checked:true, open:true},
|
{ id:21, pId:2, name:"随意勾选 2-1"},
|
{ id:22, pId:2, name:"随意勾选 2-2", open:true},
|
{ id:221, pId:22, name:"随意勾选 2-2-1", checked:true},
|
{ id:222, pId:22, name:"随意勾选 2-2-2"},
|
{ id:23, pId:2, name:"随意勾选 2-3"}
|
];
|
|
var code;
|
|
function setCheck() {
|
var zTree = $.fn.zTree.getZTreeObj("treeDemo"),
|
py = $("#py").attr("checked")? "p":"",
|
sy = $("#sy").attr("checked")? "s":"",
|
pn = $("#pn").attr("checked")? "p":"",
|
sn = $("#sn").attr("checked")? "s":"",
|
type = { "Y":py + sy, "N":pn + sn};
|
zTree.setting.check.chkboxType = type;
|
showCode('setting.check.chkboxType = { "Y" : "' + type.Y + '", "N" : "' + type.N + '" };');
|
}
|
function showCode(str) {
|
if (!code) code = $("#code");
|
code.empty();
|
code.append("<li>"+str+"</li>");
|
}
|
|
$(document).ready(function(){
|
$.fn.zTree.init($("#treeDemo"), setting, zNodes);
|
setCheck();
|
$("#py").bind("change", setCheck);
|
$("#sy").bind("change", setCheck);
|
$("#pn").bind("change", setCheck);
|
$("#sn").bind("change", setCheck);
|
});
|
//-->
|
</script>
|
</head>
|
|
<body>
|
<h1>Checkbox 勾选操作</h1>
|
<h6>[ 文件路径: excheck/checkbox.html ]</h6>
|
<div class="content_wrap">
|
<div class="zTreeDemoBackground left">
|
<ul class="ztree" id="treeDemo"></ul>
|
</div>
|
</div>
|
</body>
|
</html>
|