javascript cookie函数

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript cookie函数相关的知识,希望对你有一定的参考价值。

  1. function createCookie(name,value,days) {
  2. if (days) {
  3. var date = new Date();
  4. date.setTime(date.getTime()+(days*24*60*60*1000));
  5. var expires = "; expires="+date.toGMTString();
  6. }
  7. else expires = "";
  8. document.cookie = name+"="+value+expires+"; path=/";
  9. }
  10.  
  11. function readCookie(name) {
  12. var nameEQ = name + "=";
  13. var ca = document.cookie.split(';');
  14. for(var i=0;i < ca.length;i++) {
  15. var c = ca[i];
  16. while (c.charAt(0)==' ') c = c.substring(1,c.length);
  17. if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
  18. }
  19. return null;
  20. }
  21.  
  22. /* Example use
  23. window.onload = function(e) {
  24. var cookie = readCookie("style");
  25. var title = cookie ? cookie : getPreferredStyleSheet();
  26. setActiveStyleSheet(title);
  27. }
  28.  
  29. window.onunload = function(e) {
  30. var title = getActiveStyleSheet();
  31. createCookie("style", title, 365);
  32. }
  33. */

以上是关于javascript cookie函数的主要内容,如果未能解决你的问题,请参考以下文章

requests 返回 521

javasc面向对象编程

前端知识杂烩(Javascript篇)

JavaScript JavaScript Cookie函数

JavaScript处理Cookie的三个协助函数

JavaScript处理Cookie的三个协助函数