Initial qiwei secondary development handoff
This commit is contained in:
16
frontend/clear_storage.html
Normal file
16
frontend/clear_storage.html
Normal file
@@ -0,0 +1,16 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>清除本地存储</title>
|
||||
</head>
|
||||
<body>
|
||||
<h1>正在清除本地存储...</h1>
|
||||
<script>
|
||||
localStorage.clear();
|
||||
document.body.innerHTML = '<h1>本地存储已清除!请刷新主页面</h1>';
|
||||
setTimeout(() => {
|
||||
window.close();
|
||||
}, 2000);
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user