我的桌面上保存了一个使用iFrame的 HTML 网页。
iFrame的src指向 Internet 上的一个页面,如下所示:
www.example.com/results.html?id=1&year=1900&month=1&x=1&y=2
我的网页上有一个按钮,单击该按钮可更改月份和年份的值。
因此,当月份达到 13 时,它会变回 1 并将年份提前 1。否则,它会递增直到达到 13。
if (month <= 12) {
month++;
}
if (month == 13) {
month = 1;
year++;
}
很好用,但是当您刷新页面时,变量会返回到默认设置的任何值,例如 1900 和 1。
$.cookie.set('month', month)
document.cookie = NameOfCookie + "=" + month;
我需要 cookie 来:
使用 nextPage() 函数更改 iFrame 的 src
function nextPage() { document.getElementById("main").src="http://www.example.com/results.html?id=1&year=" + year + "&month=" + month + "&x=1&y=2"; }
我不关心过期日期,路径应该只是那个网页,而域实际上是保存在我硬盘上的网页。