在cookie里面查询值用到了indexof这个函数,下面end = document.cookie.indexof(";", offset);就这么简单。
代码如下 | 复制代码 |
*/ function readck(name){ var cookievalue = ""; var search_s = name + "="; if(document.cookie.length > 0) { offset = document.cookie.indexof(search_s); if (offset != -1) { offset += search_s.length; end = document.cookie.indexof(";", offset); if (end == -1) end = document.cookie.length; cookievalue = unescape(document.cookie.substring(offset, end)) } } return cookievalue; } function writeck(name, value, hours){ |
时间: 2024-10-01 14:02:01