升级easyUI到1.9.4版本
This commit is contained in:
50
erp_web/js/easyui/demo/menu/customitem.html
Normal file
50
erp_web/js/easyui/demo/menu/customitem.html
Normal file
@@ -0,0 +1,50 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Custom Menu Item - 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>Custom Menu Item</h2>
|
||||
<p>Right click on page to display menu, move to the 'Open' item to display its custom sub content.</p>
|
||||
<div style="margin:20px 0;"></div>
|
||||
<div id="mm" style="width:120px;">
|
||||
<div>New</div>
|
||||
<div>
|
||||
<span>Open</span>
|
||||
<div class="menu-content" style="text-align:left;padding:10px">
|
||||
<div style="font-weight:bold;font-size:14px;margin-bottom:10px">Select Your Language:</div>
|
||||
<ul id="tt">
|
||||
<li>Java</li>
|
||||
<li>Basic</li>
|
||||
<li>C++</li>
|
||||
<li>Fortran</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div data-options="iconCls:'icon-save'">Save</div>
|
||||
<div data-options="iconCls:'icon-print'">Print</div>
|
||||
<div class="menu-sep"></div>
|
||||
<div>Exit</div>
|
||||
</div>
|
||||
<script>
|
||||
$(function(){
|
||||
$('#mm').menu();
|
||||
$('#tt').tree();
|
||||
$(document).bind('contextmenu',function(e){
|
||||
e.preventDefault();
|
||||
$('#mm').menu('show', {
|
||||
left: e.pageX,
|
||||
top: e.pageY
|
||||
});
|
||||
});
|
||||
});
|
||||
</script>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user