问题描述
您好,我如何创建一个cookie来检查用户是否已经进入了我的主页,如果他们没有将他们重定向到主页中,
您好,我如何创建一个cookie来检查用户是否已经进入了我的主页,如果他们没有将他们重定向到主页中,
这个网站有很好的cookie教程以及创建和阅读它们的例子
因此,在主页上您可以使用createCookie(名称,值,天)
并使用函数readCookie(name)在其他页面上读取它
因此,您可以使用window.location =检查值和重定向 http://www.any_url.com/in JavaScript
hi how do i create a cookie that checks to see if a user has been to my homepage first and if they havent redirects them to the homepage
This site has very good tutorial on cookie as well as example for creating and reading themhttp://www.quirksmode.org/js/cookies.html
So on homepage you can create cookie using function createCookie(name,value,days) and read it on other pages using function readCookie(name)
So you can check value and redirect using window.location = "http://www.any_url.com/" in JavaScript
这篇关于如何创建一个cookie来检查用户是否访问过我的主页的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!