我有一个函数,它设置一个cookie来记住点击的图像。如果文件位于根文件夹中,则一切正常。如果我将相同的文件放在子文件夹中,cookie就不会被设置。
这是我的密码。
function FensterOeffnen (Variable) {
var a = new Date();
a = new Date(a.getTime() +1000*5);
document.cookie = 'uebergabe='+Variable+'; expires='+
a.toGMTString()+
我想在2个域之间共享一个cookie,因为我的移动站点在一个子域上运行。
生产服务器:
www.server.com
m.server.com
开发服务器:
rabbit.server
rabbit.m.server
我设置cookie的PHP代码如下所示:
if ($settings['development'] == true) // intranet does not work with subdomains :-(
setcookie($cookiename,$sessid, $expires,'/','',0);
else
我有一个小问题: PHP没有将cookie保存到我的(cookie允许)浏览器,其他站点都很好,但是这个站点无法保存cookie中的会话id,因此无法访问必要的数据。索引页执行
require("includes/functions.php");
它成功地需要我的函数文件:
session_name('login');
// Starting the session
$expiretime = 60*60*24;
session_set_cookie_params($expiretime);
// Making the cookie live for 1 day
我的页面HTML包含一个跨度(带有文本),其onClick = "goDropShip();"
该页包含一个脚本,其中包含:
function goDropShip() {
var date = new Date();
date.setTime(date.getTime()+(24*60*60*1000));
document.cookie = "dropShip=true; expires="+date.toGMTString();
window.location.href="http://www.domain.com
我正在使用jQuery Cookie插件(),并且在我的网站上的不同页面上保存我的Cookie存在问题。
我有一段内容显示在每一页上,一旦隐藏,就会像这样设置cookie (对所有变量表示歉意,它们根本不相关:
// Binds the close event to the button.
$alert.on('click', function(e) {
$alertWrap.fadeOut();
// Sets the breaking-delete cookie to yes.
$.cookie('breaking-bar-delete
我在JavaScript中创建了一个cookie。我可以在文件中看到和使用曲奇。我无法在同一域中的另一个页面中看到和使用相同的cookie。有什么问题吗?
这是密码
// Code for set Cookie
// Code for set Cookie
function setCookie(c_name,value,exdays)
{
var exdate=new Date();
exdate.setDate(exdate.getDate() + exdays);