修空调啦
标题:
网页禁止右键、Shift、Alt、Ctrl键代码
[打印本页]
作者:
随缘
时间:
2016-3-21 19:12
标题:
网页禁止右键、Shift、Alt、Ctrl键代码
<script language="JavaScript">
<!--
function key(){
if(event.shiftKey){
window.close();}
//禁止Shift
if(event.altKey){
window.close();}
//禁止Alt
if(event.ctrlKey){
window.close();}
//禁止Ctrl
return false;}
document.onkeydown=key;
if (window.Event)
document.captureEvents(Event.MOUSEUP);
function nocontextmenu(){
event.cancelBubble = true
event.returnValue = false;
return false;}
function norightclick(e){
if (window.Event){
if (e.which == 2 || e.which == 3)
return false;}
else
if (event.button == 2 || event.button == 3){
event.cancelBubble = true
event.returnValue = false;
return false;}
}
document.oncontextmenu = nocontextmenu; // for IE5+
document.onmousedown = norightclick; // for all others
//-->
</script>
<body onselectstart="return false"; onpaste="return false";>
<CENTER><STRONG><FONT color=#dc143c></FONT></STRONG> </CENTER>
<SCRIPT language=javascript> function click() {if (event.button==2) {alert('(欢迎您光临修空调啦)');}}document.onmousedown=click </SCRIPT>
复制代码
作者:
随缘
时间:
2016-3-21 19:12
<body 中加入以下一个或多个代码:
onpaste="return false" 不准粘贴
oncopy="return false;" 不准复制
oncut="return false;" 防止剪切
onselectstart = "return false" 不准选择
例如:<body onselectstart = "return false"; onpaste="return false" ,这是一个典型的不让选择复制的语句。
作者:
随缘
时间:
2016-3-21 19:23
标题:
RE: 网页禁止右键、Shift、Alt、Ctrl键代码 JS脚本
禁止选择文本JS脚本
document.writeln("<script type=\"text\/javascript\">");
document.writeln("var omitformtags=[\"input\", \"textarea\", \"select\"]");
document.writeln("omitformtags=omitformtags.join(\"|\")");
document.writeln("function disableselect(e){ ");
document.writeln("if (omitformtags.indexOf(e.target.tagName.toLowerCase())==-1) ");
document.writeln("return false ");
document.writeln("}");
document.writeln("function reEnable(){ ");
document.writeln("return true ");
document.writeln("}");
document.writeln("if (typeof document.onselectstart!=\"undefined\") ");
document.writeln("document.onselectstart=new Function (\"return false\") ");
document.writeln("else{ ");
document.writeln("document.onmousedown=disableselect ");
document.writeln("document.onmouseup=reEnable ");
document.writeln("} ");
document.writeln("<\/script>");
document.writeln("")
复制代码
作者:
随缘
时间:
2016-3-21 19:25
标题:
RE: 网页禁止右键、Shift、Alt、Ctrl键代码 真正的鼠标右键屏蔽
真正的鼠标右键屏蔽
<script language="JavaScript">
<!--
if (window.Event)
document.captureEvents(Event.MOUSEUP);
function nocontextmenu()
{
event.cancelBubble = true
event.returnValue = false;
return false;
}
function norightclick(e)
{
if (window.Event)
{
if (e.which == 2 || e.which == 3)
return false;
}
else
if (event.button == 2 || event.button == 3)
{
event.cancelBubble = true
event.returnValue = false;
return false;
}
}
document.oncontextmenu = nocontextmenu; // for IE5+
document.onmousedown = norightclick; // for all others
//-->
</script>
复制代码
作者:
随缘
时间:
2016-3-21 19:27
标题:
RE: 网页禁止右键、Shift、Alt、Ctrl键代码 禁用右键
<script>
function stop(){
return false;
}
document.oncontextmenu=stop;
</script>
复制代码
作者:
随缘
时间:
2016-3-21 19:28
标题:
RE: 网页禁止右键、Shift、Alt、Ctrl键代码 禁止选择文本
<script type="text/javascript">
var omitformtags=["input", "textarea", "select"]
omitformtagsomitformtags=omitformtags.join("|")
function disableselect(e){
if (omitformtags.indexOf(e.target.tagName.toLowerCase())==-1)
return false
}
function reEnable(){
return true
}
if (typeof document.onselectstart!="undefined")
document.onselectstart=new Function ("return false")
else{
document.onmousedown=disableselect
document.onmouseup=reEnable
}
</script>
复制代码
作者:
随缘
时间:
2016-3-21 19:29
标题:
RE: 网页禁止右键、Shift、Alt、Ctrl键代码 禁止网页另存为
<noscript><iframe src="/*.html>";</iframe></noscript>
复制代码
作者:
随缘
时间:
2016-3-21 19:29
标题:
RE: 网页禁止右键、Shift、Alt、Ctrl键代码 防拷贝/复制代码
<body leftmargin=0 topmargin=0 >
复制代码
欢迎光临 修空调啦 (http://xktla.com/)
Powered by Discuz! X3.2