easyui 右键绑定事件

$(function(){

  $('#hospitalTree').bind('contextmenu', function(e) {
            e.preventDefault();
                $('#mm').menu('show', {
                    left : e.pageX,
                    top : e.pageY
                });
        });

});

原文地址:https://www.cnblogs.com/shiguotao-com/p/4548386.html