如何为浏览器实现pathStorage相同的会话存储?

时间:2014-02-21 13:26:20

标签: javascript html5 local-storage

当我读到有关sessionStorage和localStorage时,我想要像pathStorage一样。

我看到并覆盖存储的地方,

Storage.prototype._setItem = Storage.prototype.setItem;
Storage.prototype.setItem = function(key, value)
{
_key = window.location.pathname + ":" + key;
this._setItem(_key, value);
}

Storage.prototype._getItem = Storage.prototype.getItem;
Storage.prototype.getItem = function(key)
{
_key = window.location.pathname + ":" + key;
return this._getItem(_key);
}

但是这个问题只会覆盖localstorage和session storage。

我想要一个新的有点路径存储而不覆盖localStorage和sessionStorage。

0 个答案:

没有答案