美文网首页JavaScript
js禁用右键,禁用打印,防止另存为,IE浏览器识别

js禁用右键,禁用打印,防止另存为,IE浏览器识别

作者: 新新_6261 | 来源:发表于2018-11-15 21:15 被阅读83次

禁止网页另存为

<noscript><iframe src=*.html></iframe></noscript>

禁止选择文本

<script type="text/javascript">

var omitformtags=["input", "textarea", "select"]

omitformtags=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>

禁止右键

<script> 
function stop(){ 
return false; 
} 
document.oncontextmenu=stop; 
</script>

不可打印

<style> 
@media print{ 
body{display:none} 
} 
</style>

禁止右键

document.oncontextmenu = nocontextmenu; // for IE5+
document.onmousedown = norightclick; // for all others

禁止ctrl

//禁止ctrl
//document.onkeydown=key;
if (window.Event)
document.captureEvents(Event.MOUSEUP);
//swordmaple javascript article.
//from [http://www.jx165.com/](http://www.jx165.com/)
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;}
}

禁止alt

if(event.altKey){
window.close();}
1. oncontextmenu="window.event.returnvalue=false" 将彻底屏蔽鼠标右键 
<table border oncontextmenu=return(false)><td>no</table> 
可用于Table
2. <body onselectstart="return false"> 取消选取、防止复制
3. onpaste="return false" 不准粘贴
4. oncopy="return false;" oncut="return false;" 防止复制
5. <link rel="Shortcut Icon" href="favicon.ico"> IE地址栏前换成自己的图标
6. <link rel="Bookmark" href="favicon.ico"> 可以在收藏夹中显示出你的图标
7. <input style="ime-mode:-Disabled"> 关闭输入法
8. 永远都会带着框架 <script language="javascript"><!-- if (window == top)top.location.href = "frames.htm";
 //frames.htm为框架网页 // --></script>
9. 防止被人frame <SCRIPT LANGUAGE=javascript><!-- 
if (top.location != self.location)top.location=self.location; 
// --></SCRIPT>
11. <input type=button value=查看网页源代码 
onclick="window.location = `view-source:`+ [http://www.tonightdream.com/](http://www.tonightdream.com/)`";>
12.删除时确认 
<a href=`javascript:if(confirm("确实要删除吗?"location="boos.asp?&areyou=删除&page=1"`>删除</a>
13. 取得控件的绝对位置 
//javascript 
<script language="javascript"> 
function getIE(E){ 
var t=e.offsetTop; 
var l=e.offsetLeft; 
while(e=e.offsetParent){ 
t+=e.offsetTop; 
l+=e.offsetLeft;
<!--右键开始-->
<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>

相关文章

  • js禁用右键,禁用打印,防止另存为,IE浏览器识别

    禁止网页另存为 禁止选择文本 禁止右键 不可打印 禁止右键 禁止ctrl 禁止alt

  • 网页常用 JS 代码

    背景 在做一些网页时,经常会有禁用右键、禁止选中等需求。 实现 禁用右键 取消选取、防止复制

  • js设置或禁用鼠标右键菜单

    当用户点击鼠标右键的时候oncontextmenu事件被触发 js禁用鼠标右键菜单 js自定义鼠标右键菜单 htm...

  • BHO

    因为同学新公司的变态要求,禁用IE右键菜单,开始我建议直接用JS实现,同学说不能修改页面源码,估计页面是其他公司的...

  • JS工作笔记

    js实现禁用浏览器后退#### 2017年5月9日利用js实现 禁用浏览器后退 前台请求后台返回的json字符串中...

  • 如何实现网站禁止右键功能

    在html里添加js代码可以实现鼠标右键禁用 禁止点鼠标右键 锁鼠标右键和键盘CONTEXTMENU键 锁鼠标右键...

  • selenium 启动项参数设置

    禁用图片加载 禁用浏览器弹窗

  • 前端面试每日 3+1 —— 第441天

    今天的知识点 (2020.06.30) —— 第441天 (我也要出题) [html] 怎样禁用页面中的右键、打印...

  • 按钮禁用

    页面有一个按钮button id为 button1,通过原生的js如何禁用?(IE 考虑IE 8.0以上版本) A...

  • 2019-03-06

    axios 在ie下禁用缓存配置

网友评论

    本文标题:js禁用右键,禁用打印,防止另存为,IE浏览器识别

    本文链接:https://www.haomeiwen.com/subject/cneufqtx.html