Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我只想知道假设我正在存储 jQgrid 的数据,例如排序的列名、排序顺序和页码。在 JSON 字符串格式的 cookie 中,所以我只能更改该 JSON 字符串中的特定数据,例如页码.. 有可能....??
答案是肯定的,这是可能的。您可以简单地读取 JSON 字符串,调用$.parseJSON(string)以将其作为对象返回,更改您想要的属性并再次保存它JSON.stringify(object);
$.parseJSON(string)
JSON.stringify(object);