分享

用cookie记忆当前位置的防刷新导航菜单

 weiledream 2011-06-01




<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www./TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www./1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>用cookie记忆当前位置的防刷新导航菜单丨芯晴网页特效丨CsrCode.Cn</title>
<style>
a{color:#5A73F3;text-decoration:none}
body{background:#333;margin:30px;font-size:14px;}
#menu li{float:left;height:25px;line-height:25px;list-style:none}
#menu li a{padding:10px;}
a:hover{background:#ccc;color:##3399FF}
a.hover{height:25px;line-height:25px;background:red;color:#ffffff}
a,area{blr:e-xpression(this.onFocus=this.blur())}
:focus{-moz-outline-style:none;}
</style>
</head>
<body>
<div id="menu">
 <ul>
 <li><a href="javascript:void(0)" class="hover" onclick="changename(0)" hidefocus="true">我的菜单</a></li>
 <li><a href="javascript:void(0)" onclick="changename(1)" hidefocus="true">网页模板</a></li>
 <li><a href="javascript:void(0)" onclick="changename(2)" hidefocus="true">精品代码</a></li>
 <li><a href="javascript:void(0)" onclick="changename(3)" hidefocus="true">设计素材</a></li>
 <li><a href="javascript:clear();" hidefocus="true">恢复初始</a></li>
 </ul>
</div>
<script language="javascript">
function changename(c,cl)
{
 var d=document.getElementById("menu").getElementsByTagName("a");
 if(!cl)
 {
  writeCookie("hovers",c,222);
 }
 c=readCookie("hovers")?readCookie("hovers"):c;
 for(i=0;i<d.length;i++)
 {
  d[i].className=i==c?"hover":"";
 }
}
function writeCookie(name, value, hours)
{
  var expire = "";
  if(hours != null)
  {
    expire = new Date((new Date()).getTime() + hours * 3600000);
    expire = "; expires=" + expire.toGMTString();
  }
  document.cookie = name + "=" + escape(value) + expire;
}
// Example:
// alert( readCookie("myCookie") );
function readCookie(name)
{
  var cookieValue = "";
  var search = name + "=";
  if(document.cookie.length > 0)
  {
    offset = document.cookie.indexOf(search);
    if (offset != -1)
    {
      offset += search.length;
      end = document.cookie.indexOf(";", offset);
      if (end == -1) end = document.cookie.length;
      cookieValue = unescape(document.cookie.substring(offset, end))
    }
  }
  return cookieValue;
}
function clear()
{
 writeCookie("hovers","",222);
 document.location=document.location.href;
}
changename(0,1)
</script>
</body>
</html>
<br><br><hr>
<p align="center">本特效由 <a href="http://www.CsrCode.cn">芯晴网页特效</a>丨CsrCode.Cn 收集于互联网,只为兴趣与学习交流,不作商业用途。</p>
文章由 芯晴网页特效|CsrCode.CN 收集(www.CsrCode.cn) 详文参考:http://www./html/txdm/cddh/1719.htm

    本站是提供个人知识管理的网络存储空间,所有内容均由用户发布,不代表本站观点。请注意甄别内容中的联系方式、诱导购买等信息,谨防诈骗。如发现有害或侵权内容,请点击一键举报。
    转藏 分享 献花(0

    0条评论

    发表

    请遵守用户 评论公约

    类似文章 更多