我正在尝试使用Cookie在两个页面之间传递数据。我使用原生javascript(document.cookie)和jquery(cookie插件)来保存它们但仍然出错。
在真实设备上进行测试时,不会保存任何Cookie。永远不会设置这些值,因此它们为空。
他们完美地在模拟器上工作。奇怪的是,如果我在保存cookie之前加载远程内容(例如:来自Google CDN的脚本),它就可以工作。
我还没有找到关于这个问题的任何内容。
更新:这是我用来保存cookie的测试代码。
<script>
function getCookie(c_name)
{
if (document.cookie.length>0)
{
c_start=document.cookie.indexOf(c_name + "=");
if (c_start!=-1)
{
c_start=c_start + c_name.length+1;
c_end=document.cookie.indexOf(";",c_start);
if (c_end==-1) c_end=document.cookie.length;
return unescape(document.cookie.substring(c_start,c_end));
}
}
return "";
}
function setCookie(c_name,value,expiredays)
{
var exdate=new Date();
exdate.setDate(exdate.getDate()+expiredays);
document.cookie=c_name+ "=" +escape(value)+
((expiredays==null) ? "" : ";expires="+exdate.toUTCString());
}
$(document).ready(function(){
$("#next").click(function(){
var opt = $("#options option:selected").val();
setCookie("option",opt,100);
window.location.href = "two.html";
});
});
</script>
答案 0 :(得分:0)