js 右击事件

时间:2023-03-09 16:07:33
js 右击事件

$.fn.extend({
        "rightclick": function (fn) {
            $(this).mousedown(function (e) {
                if (e.which === 3) {
                    $(this).bind("contextmenu", function (e) {
                        return false;
                    });
                    fn(e);
                }
            });
            return this;
        });