荷梅月剑 编程之路

这个世界没有偶然,有的只是必然
  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

加入收藏 设为首页等网页JS代码收集

Posted on 2007-09-10 10:25  荷梅月剑  阅读(1555)  评论(0编辑  收藏  举报
收藏本站
<span style="CURSOR: hand" onClick="window.external.addFavorite('http://www.xjcncn.com','新疆二域设计')" title="新疆二域设计">收藏本站</span>
或:
<Script Language="JavaScript">
  function bookmarkit()
  {
  window.external.addFavorite('http://www.xjcncn.com','新疆二域设计')
  }
  if (document.all)document.write('<a href="#" onClick="bookmarkit()">加入收藏夹</a>')
  </Script>


通用的加入收藏夹

<script type="text/javascript">
// <![CDATA[
function bookmark(){
var title=document.title
var url=document.location.href
if (window.sidebar) window.sidebar.addPanel(title, url,"");
else if( window.opera && window.print ){
var mbm = document.createElement('a');
mbm.setAttribute('rel','sidebar');
mbm.setAttribute('href',url);
mbm.setAttribute('title',title);
mbm.click();}
else if( document.all ) window.external.AddFavorite( url, title);
}
// ]]>
</script>

<a href="javascript:bookmark()">加入收藏夹</a>

在IE6-7. FF2.0 OP9.0中测试通过

设为首页
<span onclick="var strHref=window.location.href;this.style.behavior='url(#default#homepage)';this.setHomePage('http://www.xjcncn.com');" style="CURSOR: hand">设为首页</span>


返回页首
<img src="/imgs/top.gif" onClick="javascript:document.location='#top'" style="cursor:pointer;">


在原窗口中打开
onclick="location.href='http://www.xjcncn.com;" style="cursor:pointer;"


在新窗口中打开
onclick="location.href='http://www.xjcncn.com';" style="cursor:pointer;"


前进
<INPUT name=Submit onclick=history.go(1) type=submit value=前进>


后退
<INPUT name=Submit2 onclick=history.go(-1) type=submit value=后退>


关闭当前窗口
<a href="/"onClick="javascript:window.close();return false;">关闭窗口</a>


打印
<input name=Button onClick=document.all.WebBrowser.ExecWB(6,1) type=button value=打印><OBJECT classid=CLSID:8856F961-340A-11D0-A96B-00C04FD705A2 height=0 id=WebBrowser width=0></OBJECT>


高亮显示的行
onMouseOut="this.bgColor='';this.style.color='#000'" onMouseOver="this.bgColor='highlight';this.style.color='#fff'"