网页禁止左右键及跳转的JS代码

网页禁止左右键及跳转的JS代码
都是小东西,却比较实用。
禁止右键
<body oncontextmenu=”return false”>
此代码可以让人无法使用右键
禁止左右键
<body oncontextmenu=”return false” onselectstart=”return false”>
此代码可让人无法使用左右键,从而保护网页文件
网页跳转
<meta http-equiv=”refresh” content=”跳转的时间;url=跳转的网址”>
此代码可以让网页在一定的时间内,跳转到另外一个网页上,其中content=”
为跳转前停暂的秒数,rul= 为跳转的网址

支持google浏览器+Firefox+Ie7的禁止右键

<script language=”javascript”>
function md(e) {
try { if (event.button == 2 || event.button == 3) return false; }
catch (e) { if (e.which == 3) return false; }
}
document.oncontextmenu = function() { return false; }
document.ondragstart = function() { return false; }
document.onmousedown = md;
</script>

滚动至顶部