1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <title></title>
- <link href="../../lib/ligerUI/skins/ligerui-icons.css" rel="stylesheet" type="text/css" />
- <link href="../../lib/ligerUI/skins/Aqua/css/ligerui-all.css" rel="stylesheet" type="text/css" />
- <script src="../../lib/jquery/jquery-1.5.2.min.js" type="text/javascript"></script>
- <script src="../../lib/ligerUI/js/core/base.js" type="text/javascript"></script>
- <script src="../../lib/ligerUI/js/plugins/ligerMenu.js" type="text/javascript"></script>
- <script type="text/javascript">
- var menu1;
- var menu2;
- function onclick11(item, i)
- {
- alert(item.text);
- }
- function onclick112()
- {
- menu1.hide();
- }
- $(function ()
- {
- menu1 = $.ligerMenu({ top: 100, left: 100, width: 120, items:
- [
- { text: '增加', click: onclick11,icon:'add' },
- { text: '修改', click: onclick11,disable:true },
- { line: true },
- { text: '查看', click: onclick11 },
- { text: '关闭', click: onclick112 }
- ]
- });
- menu2 = $.ligerMenu({ top: 100, left: 100, width: 90, items:
- [
- { text: '打印', click: onclick11 },
- { text: '报表', click: onclick11 }
- ]
- });
- $("#div1").bind("contextmenu", function (e)
- {
- menu1.show({ top: e.pageY, left: e.pageX });
- return false;
- });
- $("#div2").bind("contextmenu", function (e)
- {
- menu2.show({ top: e.pageY, left: e.pageX });
- return false;
- });
- });
- </script>
- <style type="text/css">
- #menu1,.l-menu-shadow{top:30px; left:50px;}
- #menu1{ width:200px;}
- </style>
- </head>
- <body style="padding:20px; overflow:hidden; width:1000px; ">
- <div id="div1" style="width:400px; height:400px; margin:4px; background:#f1f1f1; float:left;">
- </div>
- <div id="div2" style="width:400px; height:400px; margin:4px; background:#fa93f3; float:left;">
- </div>
- </body>
- </html>
|