目录结构调整

This commit is contained in:
2026-02-04 23:47:45 +08:00
parent 6938c911c3
commit 6b22238c6e
8780 changed files with 15333 additions and 574 deletions

View File

@@ -0,0 +1,30 @@
var storage = window.localStorage;
function SaveData(key,data){
storage.setItem(key,data);
}
function IsNull(key){
if(storage.getItem(key)==null){
return false;
}else{
return true;
}
}
function ReadData(key){
return storage.getItem(key);
}
function RemoveItemByKey(key){
if(storage.getItem(key)!=null){
storage.removeItem(key);
}
}
function ClearStorage(){
storage.clear();
}