如果用户与以前相同,我需要以“高”概率进行检测,我需要为他提供相同的价格。怎么样?
我要检查IP地址和浏览器类型。如果之前收到的相同,则进行宾果游戏。
您认为呢,还有更好的选择吗?我应该使用cookie吗?如果我不想仅仅通过按Clear history
重新赋予他身份,就不会给他机会。至少要使用其他IP或启动其他浏览器。
您知道我可以使用window.location.host
来获得客户端“ IP”吗?还是什么?
答案 0 :(得分:0)
使用cookie。
//Set the previous price
document.cookie = "price=5"
//Get previous price
function getCookie() {
var name = "price";
var decodedCookie = decodeURIComponent(document.cookie);
var ca = decodedCookie.split(';');
for(var i = 0; i <ca.length; i++) {
var c = ca[i];
while (c.charAt(0) == ' ') {
c = c.substring(1);
}
if (c.indexOf(name) == 0) {
return c.substring(name.length, c.length);
}
}
return "";
}
有关如何使用Cookie的更多信息,请阅读this website。