新上传

This commit is contained in:
2026-05-08 00:55:21 +08:00
parent 21cfaaadac
commit f8a18d7914
487 changed files with 88617 additions and 0 deletions

5
public/index.js Normal file
View File

@@ -0,0 +1,5 @@
function GetQueryString (name) {
var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)");
var r = window.location.search.substr(1).match(reg);
if (r != null) return unescape(r[2]); return null;
}