码迷,mamicode.com
首页 > 其他好文 > 详细

easyui 阻止弹出浏览器右键

时间:2017-02-13 10:42:11      阅读:212      评论:0      收藏:0      [点我收藏+]

标签:tde   text   event   on()   node   als   function   top   bsp   

 

在script中使用

var doc = document.getElementByXXX(XXXX);

doc.contextMenu = function(){

  return false;

}

在easyui的tree中不起作用

 

阻止浏览器弹出右键信息 在contextMenu方法中执行事件e的preventDefault();就可以了(return false 不管用)

onContextMenu:function(e,node){
console.log(e);
console.log(node);
var mm = $(‘#mm‘);
mm.menu(‘show‘, {
left: 200,
top: 100
});
e.preventDefault();
},

easyui 阻止弹出浏览器右键

标签:tde   text   event   on()   node   als   function   top   bsp   

原文地址:http://www.cnblogs.com/feicheng/p/6392740.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!