在IE中不删除cookie

时间:2017-08-17 04:52:55

标签: javascript internet-explorer cookies

我在js' login_time'中创建了cookie。它会在< Alt + CTRL + DEL'中删除在chrome和firefox中但在IE中没有删除。我检查了Cookie和网站数据'和临时的互联网文件和网站文件'但是在IE中删除后,cookie仍然存在。



if ((document.cookie.indexOf('login_time=') < 0)) { //check cookie not exist
  var expiry = new Date();
  expiry.setTime(expiry.getTime() + (24 * 60 * 60 * 1000));
  document.cookie = 'login_time=yes; expires=' + expiry;
  alert('cookie not exist and so created');
} else {
  alert('cookie already exist exist');
}
&#13;
&#13;
&#13;

0 个答案:

没有答案