如何在JavaScript中取消鼠标事件?
当我左键单击任何对象时,我想取消鼠标左键单击的默认行为。 它在JavaScript中是否可行?
在谷歌地图上鼠标拖动地图平移到任何方向。
google.maps.event.addListener(Layers.map,'mousemove',function(event){ //怎么做 }
答案 0 :(得分:1)
尝试
document.body.addEventListener("click", function(e) { e.preventDefault(); }, true);
无论你的情况是什么“默认行为”......
答案 1 :(得分:0)
您可以使用页面正文标记中的oncontextmenu事件处理程序禁用上下文菜单