js 收藏夹

<html>
<head>
<title>加入收藏</title>
<script language="JavaScript" type="text/javascript">

function JSAddFavorite(title, url) {

       if(window.sidebar && "object" == typeof(window.sidebar) && "function" == typeof(window.sidebar.addPanel)){
      //  firefox
            window.sidebar.addPanel(title, url, '');
       }
       else if (document.all && "object" == typeof(window.external)){
           //  ie
       window.external.addFavorite(url, title);
       }

}

</script>
</head>

<body>
<a href="javascript:JSAddFavorite('google', 'http://www.google.com');">加入收藏</a>
</body>
</html>

你可能感兴趣的:(IE,firefox)