码迷,mamicode.com
首页 > 其他好文 > 详细

怎么设置头文件过期时间为当前时间+1天

时间:2015-12-21 19:55:40      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:

window.onload =function(){
  //在这里创建一个<META>元素添加到<head>节点。注意去今天的GMT时间,然后+1
  var meta;
  if (document.createElement &&(meta = document.createElement(meta))){
    // 设置属性
    meta.setAttribute("http-equiv","expires");
    //var expires=new Date().toGTMString();//+1//.getDate();
    var d=new Date();
    d.setDate(d.getDate()+1)   
    meta.setAttribute("content",d.toGMTString());
    meta.content = "a";
    // <META>元素添加到<head>节点
    document.getElementsByTagName(head).item(0).appendChild(meta);
  }
}

 

怎么设置头文件过期时间为当前时间+1天

标签:

原文地址:http://www.cnblogs.com/yexiaoyanzi/p/5064180.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!