欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

easyui tree修改图标

程序员文章站 2024-03-24 15:43:40
...

修改图标如下显示

easyui tree修改图标

这样做的目的是方便动态修改图标样式

这些就是你需要定义的样式

.icon-undo {
    background:url('/static/jquery-easyui/themes/icons/undo.png') no-repeat center center !important;
}

node节点定义

{
    id: 1,
    text: '小牛',
    state: 'closed',
    attributes: {lsh:1,aa:'s'},
    iconCls: 'icon-undo',//你定义的css
}
这个图标是不能穷举的,改法有限

主要添加!important样式

easyui tree修改图标

让自己设置的样式显示,其他class都屏蔽

easyui tree修改图标



相关标签: easyui tree 前端