<script language=javascript> 
<!-- 
function Addme(){ 
url = "http://your.site.address"; //你自己的主页地址 
title = "Your Site Name"; //你自己的主页名称 
window.external.AddFavorite(url,title); 
--> 
</script> 
<a href="javascript:Addme()">将本站添入收藏夹</a>

解决方案 »

  1.   

    <span class="cfont" style="CURSOR: hand" 
                onClick="window.external.AddFavorite('首页地址', '七夜娱乐论坛')" 
                onMouseMove="status='收藏论坛';" 
                onMouseOut="status='';">收藏论坛</span>在导航条上加上一个收藏的链接,然后保证这个链接是首页的链接,这样如果用户点击就会收藏首页.折衷的办法.
      

  2.   

    即使能够做到,也不是php与javascript做的事情,假如哪个高手知道请指教.分数不够,我重新开帖子加给你!
      

  3.   

    除非你用<iframe>,让浏览器地址栏里面写得永远是你首页的地址.
      

  4.   

    <script language=javascript>
    function setHome(){try{window.external.AddFavorite(window.document.location,window.document.title)}catch(e){};}
    </script>
    <a href="javascript:;" onclick="setHome()">收藏本页</a>这是sina的收藏页面代码,可能对你有用。