我正在尝试为媒体播放器here创建一个会话cookie,以便跟踪使用情况及其他情况,下面的代码和代码段根本没有创建它,(顺便说一句,我正在使用一个脚本使用参数创建多个Cookie,并希望像这样保留它以防止冗长的脚本)
我已经尝试了网站上提供的许多答案,但是它们不起作用,只会导致相同的问题
//script to create the cookies
function setCookie(cname,cvalue,exdays) {
var d = new Date();
d.setTime(d.getTime() + (exdays*24*60*60*1000));
var expires = "expires=" + d.toGMTString();
document.cookie = cname + "=" + cvalue + ";" + expires + ";path=/";
}
//for the cookie that makes the name, not part of the question
function getCookie(cname) {
var name = cname + "=";
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 "";
}
// also for the name
function checkCookie() {
var user=getCookie("username");
if (user != "") {
document.getElementById("display").innerHTML = "Welcome back " + user
} else {
document.getElementById("display").innerHTML = "Please enter your name in The prompt at the top of your screen!";
user = prompt("Please enter your name:","");
if (user != "" && user != null) {
setCookie("username", user, 30);
}
}
}
window.onload = checkCookie()
//for the session
window.onload = createsession()
function createsession(length){
var sessionnumber = Random rand = new Random();
long drand = (long)(rand.nextDouble()*10000000000L);
setCookie("session", sessionnumber);
};
window.onbeforeunload = function(){
document.cookie = "username=; expires=Thu, 01 Jan 1970 00:00:00 UTC; path=/;";
};
我想要的是该脚本创建一个cookie,该cookie在浏览器会话结束时到期,同时能够使其他脚本保持相同,从而使我可以创建多个cookie,而不必复制这些处理脚本
答案 0 :(得分:0)
我创建了以下小提琴进行测试:https://jsfiddle.net/Twisty/toxjLmd8/10/
我添加了一些东西来增加控制台中的信息。当我检查页面并查看存储时,可以看到session
cookie和username
cookie。如果刷新,将提示我再次输入名称。因此,它似乎按预期运行。
$(function() {
function setCookie(cname, cvalue, exdays) {
var d = new Date();
if (exdays == undefined) {
exdays = 1;
}
d.setTime(d.getTime() + (exdays * 24 * 60 * 60 * 1000));
var expires = "expires=" + d.toGMTString();
console.log("Set Cookie: " + cname + "=" + cvalue, expires);
document.cookie = cname + "=" + cvalue + ";" + expires + ";path=/";
}
function getCookie(cname) {
var name = cname + "=";
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 false;
}
function checkCookie() {
var user = getCookie("username");
if (user != "") {
$("#display").html("Welcome back " + user);
} else {
$("#display").html("Welcome, please enter your name.");
user = prompt("Please enter your name:", "");
if (user != "" && user != null) {
setCookie("username", user, 30);
}
}
}
function newSession() {
var sessionnumber = Math.random() * 10000000000.0;
console.log("New Session: " + sessionnumber);
setCookie("session", sessionnumber, 0.0125);
}
function checkSession() {
if (getCookie("session") == false) {
newSession();
}
console.log("Current Session: " + getCookie("session"));
}
window.onbeforeunload = function() {
console.log("Closing - Expire 'username' Cookie");
setCookie("username", "", 0);
};
window.onload = checkCookie();
window.onload = checkSession();
});
设置过去的日期或当前的日期和时间,应使浏览器立即使cookie过期并将其丢弃。设置没有到期日期的Cookie可能会导致来自不同浏览器的意外结果。如果未设置日期,则该日期应在会话结束时过期(预期行为),但浏览器可能会看到它已经过期(仍然有效)或永不过期(真的不好)。并非所有浏览器的编写方式都相同。
如果未触发onbeforeunload
回调,则cookie不会过期,但每个checkCookie()
会保持有效30天。您可以将Cookie设置为在20分钟(0.0125
天)内到期。这是在服务器端处理会话的方式。如果套接字关闭并且会话空闲20分钟(“会话空闲超时”的默认设置),则将删除会话数据。
希望这会有所帮助。