标题:JavaScript Cookies 实现
只看楼主
stvenyin
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2019-3-5
 问题点数:0 回复次数:0 
JavaScript Cookies 实现
<html>
<head>
<script type="text/javascript">
    function getCookie(c_name) {
        if (document.cookie.length > 0) {
            c_start = document.cookie.indexOf(c_name + "=")
            if (c_start != -1) {
                c_start = c_start + c_name.length + 1
                c_end = document.cookie.indexOf(";", c_start)
                if (c_end == -1) c_end = document.cookie.length
                return unescape(document.cookie.substring(c_start, c_end))
            }
        }
        return ""
    }

    function setCookie(c_name, value, expiredays) {
        var exdate = new Date()
        exdate.setDate(exdate.getDate() + expiredays)
        document.cookie = c_name + "=" + escape(value) +
((expiredays == null) ? "" : ";expires=" + exdate.toGMTString())
    }

    function checkCookie() {
        username = getCookie('username')
        if (username != null && username != "")
        { alert('Welcome again ' + username + '!') }
        else {
            username = prompt('Please enter your name:', "")
            if (username != null && username != "") {
                setCookie('username', username, 365)
            }
        }
    }
</script>
</head>

<body onLoad="checkCookie()">
</body>
</html>
搜索更多相关主题的帖子: JavaScript function cookie document username 
2019-03-05 16:55



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-493421-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 1.145929 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved