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">
4、利用js实现 禁用浏览器后退
//回退时候产生一个前进事件
<script>
javascript:window.history.forward(1);
</script>
或者如下方式:
<script language="javascript">
//防止页面后退
history.pushState(null, null, document.URL);
window.addEventListener('popstate', function () {
history.pushState(null, null, document.URL);
});
</script>