兼容 IE6、IE7、FF 的“加入收藏”完整代码:

<?xml version="1.0" encoding="gb2312"?>
  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  <html xmlns="http://www.w3.org/1999/xhtml">
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
  <title>兼容 IE6、IE7、FF 的“加入收藏”</title>
  </head>
<body>
<script type="text/javascript" language="javascript">
  <!--
  function AddFavorite(sURL, sTitle)
  {
  try
  {
  window.external.addFavorite(sURL, sTitle);
  }
  catch (e)
  {
  try
  {
  window.sidebar.addPanel(sTitle, sURL, "");
  }
  catch (e)
  {
  alert("加入收藏失败,有劳您手动添加。");
  }
  }
  }
  -->
  </script>
<p>
  <a href="#" onclick="javascript:AddFavorite('http://www.cftea.com/', '千一网络 - 网页技术 永无止境');return false">加入收藏</a>
  </p>
</body>
</html>


本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/feng_sundy/archive/2008/10/30/3187086.aspx

你可能感兴趣的:(兼容 IE6、IE7、FF 的“加入收藏”完整代码:)