Git Product home page Git Product logo

custom-contextmenu's Introduction

自定义右键菜单

简单易用的自定义右键菜单,原生JS编写无需引入任何库,完美兼容至IE8;可根据需要设置多个右键菜单,每个菜单下也可以进行嵌套。

cotyi8.jpg

首先要引入样式文件和JS文件

<link rel="stylesheet" href="menu.css">
<script src="menu.js"></script>

引入后直接实例化Menu

el 表示需要使用右键菜单的元素(JQ可以传$('#test')[0]);

menu 数组表示菜单内容,可以进行嵌套;

name 菜单项名字

callback 选择菜单项后的回调函数

具体可以看下面的demo

new Menu({
    el: div1,
    list: [{
            name: '保存',
            callback: function() {
                div1.innerText = '保存';
            }
        },
        {
            name: '刷新',
            callback: function() {
                div1.innerText = '刷新';
            }
        },
        {
            name: '设置',
            menu: [{
                    name: '首选项',
                    callback: function() {
                        div1.innerText = '首选项';
                    }
                },
                {
                    name: '快捷键',
                    callback: function() {
                        div1.innerText = '快捷键';
                    }
                }
            ]
        }
    ]
});

custom-contextmenu's People

Contributors

peal-l avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.