升级easyUI到1.9.4版本
This commit is contained in:
58
erp_web/js/easyui/demo/sidemenu/basic.html
Normal file
58
erp_web/js/easyui/demo/sidemenu/basic.html
Normal file
@@ -0,0 +1,58 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Basic SideMenu - jQuery EasyUI Demo</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../themes/default/easyui.css">
|
||||
<link rel="stylesheet" type="text/css" href="../../themes/icon.css">
|
||||
<link rel="stylesheet" type="text/css" href="../demo.css">
|
||||
<script type="text/javascript" src="../../jquery.min.js"></script>
|
||||
<script type="text/javascript" src="../../jquery.easyui.min.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<h2>Basic SideMenu</h2>
|
||||
<p>Collapse the side menu to display the main icon.</p>
|
||||
<div style="margin:20px 0;">
|
||||
<a href="javascript:;" class="easyui-linkbutton" onclick="toggle()">Toggle</a>
|
||||
</div>
|
||||
<div id="sm" class="easyui-sidemenu" data-options="data:data"></div>
|
||||
<script type="text/javascript">
|
||||
var data = [{
|
||||
text: 'Item1',
|
||||
iconCls: 'icon-sum',
|
||||
state: 'open',
|
||||
children: [{
|
||||
text: 'Option1'
|
||||
},{
|
||||
text: 'Option2'
|
||||
},{
|
||||
text: 'Option3',
|
||||
children: [{
|
||||
text: 'Option31'
|
||||
},{
|
||||
text: 'Option32'
|
||||
}]
|
||||
}]
|
||||
},{
|
||||
text: 'Item2',
|
||||
iconCls: 'icon-more',
|
||||
children: [{
|
||||
text: 'Option4'
|
||||
},{
|
||||
text: 'Option5'
|
||||
},{
|
||||
text: 'Option6'
|
||||
}]
|
||||
}];
|
||||
|
||||
function toggle(){
|
||||
var opts = $('#sm').sidemenu('options');
|
||||
$('#sm').sidemenu(opts.collapsed ? 'expand' : 'collapse');
|
||||
opts = $('#sm').sidemenu('options');
|
||||
$('#sm').sidemenu('resize', {
|
||||
width: opts.collapsed ? 60 : 200
|
||||
})
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user