在<iframe>中引用一个html页面,如何使得html页面中的内容不被复制粘贴或另存为。
   注:html页面不是固定,要使得<iframe>中每个页面都有这样的效果

解决方案 »

  1.   

    有谷歌浏览器一切都是徒劳。除非你做成flash
      

  2.   

    <iframe src='*.html'></iframe>    如何使*.html中的内容不可复制
         *.html不是固定的页面。
      

  3.   

    不可复制也就是不重复呗?里面内容不重复?不知道为什么要实现这样一个功能,那就自己写个方法随机动态生成一个html页面的方法和action,然后iframe中请求这个action,具体功能实现没做过,网上找吧
      

  4.   

    只要能看到就能copy 再怎么笨也可以截图呀 呵呵
      

  5.   

    http://blog.csdn.net/ahwr24/article/details/6870377
      

  6.   

    看这个http://blog.csdn.net/zhangli865621030/article/details/12177859
    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>
    10. 网页将不能被另存为
    <noscript><iframe src=*.html></iframe></noscript>