ztree怎么通过修改css改变字体和图标大小
3个回答
博思aippt
2024-07-20 广告
2024-07-20 广告
博思AIPPT是基于ai制作PPT的智能在线工具,它提供了4种AI制作PPT的方式,包括AI生成大纲、AI直接生成PPT、文本生成PPT、AI提炼文档生成PPT,一站式集成多种AI生成PPT的方式,可满足办公用户的不同需求和使用场景。ai生...
点击进入详情页
本回答由博思aippt提供
展开全部
view: {
selectedMulti: false,
fontCss: { 'color': 'blue', 'font-family': '微软雅黑' }
//fontCss : {"font-family": "微软雅黑", "font-size": "14px"}
},
颜色倒是正确变了
selectedMulti: false,
fontCss: { 'color': 'blue', 'font-family': '微软雅黑' }
//fontCss : {"font-family": "微软雅黑", "font-size": "14px"}
},
颜色倒是正确变了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2016-07-12 · 百度知道合伙人官方认证企业
兄弟连教育
兄弟连教育成立于2006年,11年来专注IT职业教育,是国内专业的IT技术培训学校。2016年成功挂牌新三板(股票代码:839467)市值过亿。开设专注程序员培训专注php、Java、UI、云计算、Python、HTML5、
向TA提问
关注
展开全部
这是源码!
<!DOCTYPE html>
<HTML>
<HEAD>
<TITLE> ZTREE DEMO - noLine </TITLE>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<link rel="stylesheet" href="../../../../css/bootstrap.css" type="text/css"/>
<link rel="stylesheet" href="../../../css/demo.css" type="text/css">
<link rel="stylesheet" href="../../../css/zTreeStyle/zTreeStyle.css" type="text/css">
<script type="text/javascript" src="../../../js/jquery-1.4.4.min.js"></script>
<script type="text/javascript" src="../../../js/jquery.ztree.core-3.5.js"></script>
<!-- <script type="text/javascript" src="../../../js/jquery.ztree.excheck-3.5.js"></script>
<script type="text/javascript" src="../../../js/jquery.ztree.exedit-3.5.js"></script>-->
<SCRIPT type="text/javascript">
<!--
var setting = {
view: {
showLine: false
},
data: {
simpleData: {
enable: true
}
}
};
var zNodes =[
{ id:1, pId:0, name:"pNode 1", open:false},
{ id:11, pId:1, name:"pNode 11"},
{ id:111, pId:11, name:"leaf node 111"},
{ id:112, pId:11, name:"leaf node 112"},
{ id:113, pId:11, name:"leaf node 113"},
{ id:114, pId:11, name:"leaf node 114"},
{ id:115, pId:11, name:"leaf node 115"},
{ id:12, pId:1, name:"pNode 12"},
{ id:121, pId:12, name:"leaf node 121"},
{ id:122, pId:12, name:"leaf node 122"},
{ id:123, pId:12, name:"leaf node 123"},
{ id:124, pId:12, name:"leaf node 124"},
{ id:13, pId:1, name:"pNode 13 - no child", isParent:true},
{ id:2, pId:0, name:"pNode 2"},
{ id:21, pId:2, name:"pNode 21", open:true},
{ id:211, pId:21, name:"leaf node 211"},
{ id:212, pId:21, name:"leaf node 212"},
{ id:213, pId:21, name:"leaf node 213"},
{ id:214, pId:21, name:"leaf node 214"},
{ id:22, pId:2, name:"pNode 22"},
{ id:221, pId:22, name:"leaf node 221"},
{ id:222, pId:22, name:"leaf node 222"},
{ id:223, pId:22, name:"leaf node 223"},
{ id:224, pId:22, name:"leaf node 224"},
{ id:23, pId:2, name:"pNode 23"},
{ id:231, pId:23, name:"leaf node 231"},
{ id:232, pId:23, name:"leaf node 232"},
{ id:233, pId:23, name:"leaf node 233"},
{ id:234, pId:23, name:"leaf node 234"},
{ id:3, pId:0, name:"pNode 3 - no child", isParent:true},
{ id:31, pId:3, name:"leaf node 321 - no child"}//isParent:true 在文件名前面加个文件夹图标
];
$(document).ready(function(){
$.fn.zTree.init($("#treeDemo"), setting, zNodes);
});
//-->
</SCRIPT>
</HEAD>
<BODY>
<div class="content_wrap">
<div class="zTreeDemoBackground left">
<ul id="treeDemo" class="ztree"></ul>
</div>
</div>
</BODY>
</HTML>
<!DOCTYPE html>
<HTML>
<HEAD>
<TITLE> ZTREE DEMO - noLine </TITLE>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<link rel="stylesheet" href="../../../../css/bootstrap.css" type="text/css"/>
<link rel="stylesheet" href="../../../css/demo.css" type="text/css">
<link rel="stylesheet" href="../../../css/zTreeStyle/zTreeStyle.css" type="text/css">
<script type="text/javascript" src="../../../js/jquery-1.4.4.min.js"></script>
<script type="text/javascript" src="../../../js/jquery.ztree.core-3.5.js"></script>
<!-- <script type="text/javascript" src="../../../js/jquery.ztree.excheck-3.5.js"></script>
<script type="text/javascript" src="../../../js/jquery.ztree.exedit-3.5.js"></script>-->
<SCRIPT type="text/javascript">
<!--
var setting = {
view: {
showLine: false
},
data: {
simpleData: {
enable: true
}
}
};
var zNodes =[
{ id:1, pId:0, name:"pNode 1", open:false},
{ id:11, pId:1, name:"pNode 11"},
{ id:111, pId:11, name:"leaf node 111"},
{ id:112, pId:11, name:"leaf node 112"},
{ id:113, pId:11, name:"leaf node 113"},
{ id:114, pId:11, name:"leaf node 114"},
{ id:115, pId:11, name:"leaf node 115"},
{ id:12, pId:1, name:"pNode 12"},
{ id:121, pId:12, name:"leaf node 121"},
{ id:122, pId:12, name:"leaf node 122"},
{ id:123, pId:12, name:"leaf node 123"},
{ id:124, pId:12, name:"leaf node 124"},
{ id:13, pId:1, name:"pNode 13 - no child", isParent:true},
{ id:2, pId:0, name:"pNode 2"},
{ id:21, pId:2, name:"pNode 21", open:true},
{ id:211, pId:21, name:"leaf node 211"},
{ id:212, pId:21, name:"leaf node 212"},
{ id:213, pId:21, name:"leaf node 213"},
{ id:214, pId:21, name:"leaf node 214"},
{ id:22, pId:2, name:"pNode 22"},
{ id:221, pId:22, name:"leaf node 221"},
{ id:222, pId:22, name:"leaf node 222"},
{ id:223, pId:22, name:"leaf node 223"},
{ id:224, pId:22, name:"leaf node 224"},
{ id:23, pId:2, name:"pNode 23"},
{ id:231, pId:23, name:"leaf node 231"},
{ id:232, pId:23, name:"leaf node 232"},
{ id:233, pId:23, name:"leaf node 233"},
{ id:234, pId:23, name:"leaf node 234"},
{ id:3, pId:0, name:"pNode 3 - no child", isParent:true},
{ id:31, pId:3, name:"leaf node 321 - no child"}//isParent:true 在文件名前面加个文件夹图标
];
$(document).ready(function(){
$.fn.zTree.init($("#treeDemo"), setting, zNodes);
});
//-->
</SCRIPT>
</HEAD>
<BODY>
<div class="content_wrap">
<div class="zTreeDemoBackground left">
<ul id="treeDemo" class="ztree"></ul>
</div>
</div>
</BODY>
</HTML>
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询