特效描述:右键菜单插件 右键列表菜单。jquery右键菜单插件
代码结构
1. 引入CSS
2. 引入JS
3. HTML代码
jQuery Contextify Demo
使用右键点击这里
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);