1、鼠标右键触发事件
function click()
{
if(event.button==2)
{
alert(‘hello。。。。。。‘)
}
}
document.onmousedown=click
2、让鼠标右键失效
<body oncontextmenu=self.event.returnValue=false>
3、是页面文字内容无法选择或全选
<body ondragstart="window.event.returnValue=false" oncontextmenu="window.event.returnValue=false" onselectstart="event.returnValue=false">
原文地址:https://www.cnblogs.com/friday69/p/9178889.html
时间: 2024-10-22 22:04:32