Home >Web Front-end >JS Tutorial >A small example of JS operating cookies_javascript skills

A small example of JS operating cookies_javascript skills

WBOY
WBOYOriginal
2016-05-16 17:20:02994browse
复制代码 代码如下:

Cookie = {
    setCookie: function (name, val) {
        var exp = new Date();
        exp.setDate(exp.getDate() 600 * 1000);
        document.cookie = name "=" escape(val) ";expires=" exp.toGMTString();
    }, DelCookie: function (name) {
        document.cookie = name "=;expires=" (new Date(0)).toGMTString();
    }, getCookie: function (name) {
        var cookieArray = document.cookie.match(new RegExp("(^| )" name "=([^;]*)(;|$)"));
        if (cookieArray != null) return unescape(cookieArray[2]);
        else return null;
    }
}
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn