js代码
<script src="src/jquery.contextify.js"></script> <script> var options = {items:[ {header: '右键功能菜单'}, {divider: true}, {text: '第一个链接', href: '#'}, {text: '第二个链接', onclick: function() {alert("你点击了第二个链接")}}, {text: '第三个链接', onclick: function() {alert("你点击了第3个链接")}}, {text: '第四个链接', onclick: function() {alert("你点击了第4个链接")}}, {divider: true}, {text: '更多...', href: '#'} ]} $('.panel-body').contextify(options); </script>