我正在使用本地存储在页面之间传递值以创建滚动效果(用户单击链接并根据 ID 滚动到页面的特定部分)
我以前使用 cookie,但似乎在 Android 上不起作用,我读到支持本地存储,所以切换到那个。它在浏览器中工作得很好,但是一旦它被打包为本机应用程序,我就失去了所有功能?API声明应该支持它,有什么想法吗?
这是我的代码:
基本网址:
var storage = window.localStorage;
$("a.scroll_link").click(function(event) {
event.preventDefault();
var value = $(this).attr("id");
storage.setItem("key",value);
console.log(value);
window.location=$(this).attr("href");
});
接收网址:
$(function () {
var value = window.localStorage.getItem("key");
if (value != "" && value != "undefined" && value != null) {
var storage = window.localStorage;
storage.setItem("key",value);
var scroll_type = "";
if ($.browser.webkit) {
scroll_type = "body";
} else {
scroll_type = "html";
}
$(scroll_type)
.stop()
.animate({
//get top-position of target-element and set it as scroll target
scrollTop: ($("#" + value).offset().top - 25)
//scrolldelay: 1.5 seconds
}, {
duration: 1500,
complete: function () {
storage.removeItem("key");
},
});
}
});
该代码在浏览器中运行良好,只是不是本机,有什么想法吗?
谢谢,