html 中如何读取cookie

html 中如何读取cookie,第1张

//读取COOKIES

function getCookie(name)

{

var arr,reg=new RegExp("(^| )"+name+"=([^]*)(|$)")

if(arr=document.cookie.match(reg)) return unescape(arr[2])

else return null

}

var img = getCookie("xxx")

然后 document.getElementById("body").style.backgroundImage = img

<script type="text/javascript">

function getCookie(CookieName) {

var Cookie = document.cookie.split(''), tmp

for (var i = 0i <Cookie.lengthi++) {

tmp = Cookie[i].split('=')

if (tmp[0] == CookieName) return tmp[1]

tmp = null

}

Cookie = nullreturn false

}

var aspCookie = getCookie('abc')

if (aspCookie !== false) alert(aspCookie)

</script>


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/8338804.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-15
下一篇 2023-04-15

发表评论

登录后才能评论

评论列表(0条)

保存