禁止冒泡:
if(isIE)
ev.cancelBubble = true;
if(isFF)
ev.stopPropagation();
禁止系统右键:
self.event.returnValue=false;
禁止冒泡:
if(isIE)
ev.cancelBubble = true;
if(isFF)
ev.stopPropagation();
禁止系统右键:
self.event.returnValue=false;
转载于:https://www.cnblogs.com/wudingfeng/archive/2011/11/08/2241101.html