oncontextmenu : "当调用文本菜单时"如:在页面点右键弹出属性菜单 下面代码保存到记事本,另存成html测试:<script> //当右键点击页面时,调用方法 document.oncontextmenu = function(){ alert("点击了鼠标右键");//弹出提示:"点击了鼠标右键";return false;//屏蔽掉的右键菜单 } </script> ...
document.getElementById('js_appmsg_account').onclick= function() { console.log('皮一下很开心');};可以发现 鼠标的 onclick事件是在onmouseup事件发生之后执行的。我们再添加个onmousedown事件测试下看看看效果,如下图,按下按钮的onmousedown的事件先执行然后是onmouseup事件,最后是onclick事件。oncontextmen...
//禁止鼠标右击document.oncontextmenu =function() { event.returnValue=false; };//禁用开发者工具F12document.onkeydown = document.onkeyup = document.onkeypress =function(event) { let e= event || window.event || arguments.callee.caller.arguments[0];if(e && e.keyCode == 123) { e.returnValue...
通过JS屏蔽自带右键菜单 document.oncontextmenu = function(e){ return false; } 1. 2. 3. 鼠标按下时mousedown事件,我们可以通过判断e.which的值来确定是鼠标的那个键按下。 $('#aa').mousedown(function(e){ if(e.which == 3){ // 1 = 鼠标左键 left; 2 = 鼠标中键; 3 = 鼠标右键 alert("...
<script> document.oncontextmenu = function() { alert('a'); return false; } </script> </head> <body> </body> </html>二、自定义右键菜单1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42...
document.oncontextmenu = function (e) { var OEvent = e || event; OEvent.preventDefault() } 取消事件的绑定 removeEventListener 例如:绑定了两个事件 取消绑定设置取消第一个绑定事件 就只会显示第二个绑定事件 取消鼠标右键的默认行为 鼠标右击默认行为:oncontextmenu ...
alert(1); }) </script>``` 事件处理程序分为三类:DOM0级事件处理程序、DOM2级事件处理程序、IE事件处理程序 * DOM0事件处理程序 //添加 btn.onclick = function(){} //移除 btn.onclick = null; * DOM2事件处理程序 var handler = function(){} //添加 btn.addEventListener('click', handler,true...
document.oncontextmenu = function (event){ if(window.event){ event = window.event; }try{ var the = event.srcElement; if (!((the.tagName == "INPUT" && the.type.toLowerCase() == "text") || the.tagName == "TEXTAREA")){
pop.document.oncontextmenu=function() { return false; } //选择右键菜单的一项后,菜单隐藏 pop.document.onclick=function() { pop.hide(); } //显示菜单 pop.show(event.clientX-1,event.clientY,width,rowCount*25,document.body); return true; ...