javascript4

Posted muhe221

tags:

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

cookie

<html>
<head>
<script type="text/javascript">
function getCookie(c_name) {
    document.write("my cookie:" + document.cookie)
    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() {
    document.cookie = "ab=123";
    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>

 

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

JavaScript4种数组随机选取实战源码

JavaScript4种数组随机选取实战源码

JavaScript4种数组随机选取实战源码

18 ArcGIS API for JavaScript4.X 系列加载天地图(经纬度)

python3 爬虫

网站系统开发需要掌握的技术