zoukankan      html  css  js  c++  java
  • 禁止网页另存为的代码

    不用js也可以控制禁止右键!

    <!--禁止右键-->

    <body oncontextmenu="return false"></body>

    <!--禁止网页另存为: --> 

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

    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/`";>


    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;}}

  • 相关阅读:
    JAVA微信公众号网页开发——获取公众号关注的所有用户
    删除mysl
    sql语言(mysql)
    mycat读写分离
    mysql双主双从技术
    实用的10个日志处理案例
    ansible基本操作
    MySQL改密
    mysql源码包安装
    ftp搭建mysql服务器
  • 原文地址:https://www.cnblogs.com/Tally/p/2870706.html
Copyright © 2011-2022 走看看