window.onload = function () { setTimeout(function () { //showSuccess(); verifySucc(); }, 300); function showSuccess() { document.getElementById("loadingText").style.display = "none"; document.getElementById("loadingSuccess").style.display = "block"; document.querySelector(".loadingSpinner").style.display = "none"; } function verifySucc() { let xhr = new XMLHttpRequest(); xhr.onreadystatechange = function () { if (xhr.readyState === 4 && xhr.status === 200) { window.location.reload(); } }; const requestUrl = "https://www.guangcanshu.com/set_access_token-f19721d646a92521f219e3c0b7228912-eeac7f9bf2dd60235828c4bb0498f57a-YWNs-Y2FtZXJh-"; xhr.open("GET", requestUrl, true); xhr.send(); } }