0
点赞
收藏
分享

微信扫一扫

EasyUI(树形菜单+动态添加tab)

和谐幸福的人生 2022-04-06 阅读 104
easyui

目录

一、准备工作

二、树形菜单

P1、json测试数据 


一、准备工作

        1、将EasyUI的css样式和js库都导入到项目中

二、树形菜单

P1、json测试数据 

[{
	"id":1,
	"text":"My Documents",
	"children":[{
		"id":11,
		"text":"Photos",
		"state":"closed",
		"children":[{
			"id":111,
			"text":"Friend"
		},{
			"id":112,
			"text":"Wife"
		},{
			"id":113,
			"text":"Company"
		}]
	},{
		"id":12,
		"text":"Program Files",
		"children":[{
			"id":121,
			"text":"Intel"
		},{
			"id":122,
			"text":"Java",
			"attributes":{
				"p1":"Custom Attribute1",
				"p2":"Custom Attribute2"
			}
		},{
			"id":123,
			"text":"Microsoft Office"
		},{
			"id":124,
			"text":"Games",
			"checked":true
		}]
	},{
		"id":13,
		"text":"index.html"
	},{
		"id":14,
		"text":"about.html"
	},{
		"id":15,
		"text":"welcome.html"
	}]
}]
举报

相关推荐

0 条评论