From 7785bc18c726c2757965874696fd0279cca57d2b Mon Sep 17 00:00:00 2001 From: mayx Date: Sun, 30 Mar 2025 13:47:42 +0000 Subject: Update 2 files - /_layouts/default.html - /index.html--- _layouts/default.html | 7 ++++++- index.html | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/_layouts/default.html b/_layouts/default.html index 3669255..ded6615 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -31,7 +31,12 @@ function getSearchJSON(callback) { var searchData = JSON.parse(localStorage.getItem("blog_" + lastUpdated.valueOf())); if (!searchData) { - localStorage.clear(); + for (var i = 0; i < localStorage.length; i++) { + var key = localStorage.key(i); + if (key.startsWith('blog_')) { + localStorage.removeItem(key); + } + } $.getJSON("/search.json", function (data) { localStorage.setItem("blog_" + lastUpdated.valueOf(), JSON.stringify(data)); callback(data); diff --git a/index.html b/index.html index 4248863..d9adde4 100644 --- a/index.html +++ b/index.html @@ -3,7 +3,7 @@ layout: default title: 首页 - 我的文章 --- -