jstree取消勾选_jstree中的checkbox默认选中和隐藏示例代码

jstree复选框自定义显示隐藏和初始化默认选中

首先需要配置 Checkbox plugin

"plugins" : ['checkbox']

设置默认选中状态(checkbox 选中)

state: {checked: true}

$.jstree.defaults.checkbox.tie_selection

示例:

$('#demo_tree').jstree({

"core" : {

'data': [

{ "id" : "ajson1", "parent" : "#", "text" : "Simple root node", state: {checked: true}},

{ "id" : "ajson2", "parent" : "#", "text" : "Root node 2" },

{ "id" : "ajson3", "parent" : "ajson2", "text" : "Child 1" },

{ "id" : "ajson4", "parent" : "ajson2", "text" : "Child 2" },

]

},

"plugins" : ['checkbox'],

"checkbox" : {

"tie_selection": false,

}

});

jstree复选框自定义显示隐藏

jstree 本身不支持在节点中隐藏 checkbox,国外有个大佬给出一个利用 css 来隐藏的解决方案:

首先来一段 css

.no_checkbox>i.jstree-checkbox{display:none}

然后在 data 的 json 数据结构中

$('#demo_tree').jstree({

"core" : {

'data': [

{ "id" : "ajson1", "parent" : "#", "text" : "Simple root node", state: {checked: true}},

{ "id" : "ajson2", "parent" : "#", "text" : "Root node 2" },

{ "id" : "ajson3", "parent" : "ajson2", "text" : "Child 1" , a_attr: {class: "no_checkbox"}},

{ "id" : "ajson4", "parent" : "ajson2", "text" : "Child 2" },

]

},

"plugins" : ['checkbox'],

});

效果:

jstree version => 3.3.8

参考:

总结

以上所述是小编给大家介绍的jstree中的checkbox默认选中和隐藏示例代码,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对脚本之家网站的支持!

如果你觉得本文对你有帮助,欢迎转载,烦请注明出处,谢谢!

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值