- 授权协议: MIT
- 开发语言: JavaScript
- 操作系统: 跨平台
- 软件首页: https://git.oschina.net/lilanjun/contextMenu
- 软件文档: https://git.oschina.net/lilanjun/contextMenu/blob/master/README.md?dir=0&filepath=README.md&oid=80b04a18a7d39d0b2c38fb44531f2a16dfae6daf&sha=b4a2b26cee04979730aad1e0aee65650d49d9bad
软件介绍
jQuery 上下文菜单插件,支持多级菜单和图标显示,自定义样式实现灵活控制菜单风格。
上下文菜单示例
实例代码:
var data = [
[
{
text: "剪切(ctrl+x)",
action: function () {
console.log("剪切");
}
},
{
text: "复制(ctrl+c)"
},
{
text: "粘贴(ctrl+v)",
action: function () {
console.log("粘贴");
}
}
]
Hacker's Delight
Henry S. Warren Jr. / Addison-Wesley / 2002-7-27 / USD 59.99
A collection useful programming advice the author has collected over the years; small algorithms that make the programmer's task easier. * At long last, proven short-cuts to mastering difficult aspec......一起来看看 《Hacker's Delight》 这本书的介绍吧!
