English 中文(简体)
j Query:$.cookie different Value than PHP$_COOKIE? (只有网络浏览器)
原标题:jQuery: $.cookie different value than PHP $_COOKIE? (only webkit-browser)

我用 j子更新和装载搜索结果,并在网页底部进行页面导航。 我有一张液晶片和几个带有检查箱的超文本处理器,其中每个元素都安装了一个 co(关于变化),并使用<代码>。

现在,我使用同样的方法上载上页面导航,我取得了非常令人信服的成果。 在搜查.php时,《酒类法》是:

// PAGE NAVIGATION //

$( #page_navigation ).on("click", ".page_no_item" , function(event) {
      var id = (event.target.id);
      $.cookie("cur_page_no", id);
      search_results_load();
      page_navigation_load();
      alert($.cookie("cur_page_no")); // -> returns the right cookie value
    });

此外,我检查了准备的文件价值,以确保:

$(document).ready(function() {  
      alert($.cookie("cur_page_no")); // -> also returns the right cookie value
    });

.php文档中,我装在无网站浏览器上,_COOKIE[曲线_page_no],在网上浏览器上,它始终如一地收回正确价值(如果库克群岛是空洞的,则我称之为标准)。 <代码>var_dump( 回归始终string(1)>1 in webkit browsers.

注:我试图把这个问题推向当地,但问题依然存在。 并请指出,我用完全相同的方式阅读其他厨师(例如检查的检查箱),并退还正确价值。

任何想法或暗示都受到高度赞赏! 非常感谢你们:

最佳回答

当我面临这一问题时,似乎在一些情况下,实际上有两只同名的 co。 其中之一就是建立了厨师,另一个是创建的 j子。 在其他情况下,有一个厨师,但是在整整页重载之前,实验室将无法适当产生更新的价值。

问题在于,装上新一页,使 co达到理想的“新”价值。 因此,处理Sphp的迟发 co效应的一种办法是,既使用其现有的 co基方法,又采用_$_COOKIE[ YouCookieName] = val

不幸的是,我不得不坚持的解决办法是,处理一个与共同财产或共同财产法完全相同的特殊 co子,而且这是它永远不会出现和阅读/价值更新/重复问题的唯一途径。

问题回答

暂无回答




相关问题
Brute-force/DoS prevention in PHP [closed]

I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

定值美元

如何确认来自正确来源的数字。

Generating a drop down list of timezones with PHP

Most sites need some way to show the dates on the site in the users preferred timezone. Below are two lists that I found and then one method using the built in PHP DateTime class in PHP 5. I need ...

Text as watermarking in PHP

I want to create text as a watermark for an image. the water mark should have the following properties front: Impact color: white opacity: 31% Font style: regular, bold Bevel and Emboss size: 30 ...

How does php cast boolean variables?

How does php cast boolean variables? I was trying to save a boolean value to an array: $result["Users"]["is_login"] = true; but when I use debug the is_login value is blank. and when I do ...

热门标签