放在网页上的东西就能够被访问者另存下来, 除非你不放到网络上去, 现在所谓的方法只是增加一些另存的难度罢了, 不过到目前为止我还没有看到过一种真的可以防止另存的方法.
1. 加入收藏夹的问题你可以用 frame 框架来做.
2. 你用 showModalDialog 来显示你的网页.

解决方案 »

  1.   

    showModalDialog 是指什么意思呢?能说的具体点吗?
    谢谢黄蓉,你真聪明!
      

  2.   

    给你一个演示的效果:
    <script language=javascript>
    function mm(url)
    {
      var str = "status: no; help: no; ";
      str += "dialogTop: 0; dialogLeft: 0;";
      str += "dialogWidth: "+ window.screen.availWidth +"px;";
      str += "dialogHeight: "+ window.screen.availHeight +"px;";
      showModalDialog(url,'', str);
      return false;
    }
    </script>
    <a href="http://www.csdn.net/" onclick="return mm(this.href)">测试</a>