失联页面: <a id="path404" href=""></a> <br /><br />
那些找不到的...
究竟是被忘却了...
还是你未曾认真寻找?
function loadPageVar(sVar) {
return decodeURI(
window.location.search.replace(
new RegExp(
"^(?:.*[&\\?]" + encodeURI(sVar).replace(/[\.\+\*]/g, "\\$&") + "(?:\\=([^&]*))?)?.*$",
"i",
),
"$1",
),
);
}
document.querySelector("#path404").innerText = loadPageVar("href");
document.querySelector("#path404").href = loadPageVar("href");
window.addEventListener("beforeinstallprompt", (event) => {
console.log("👍", "beforeinstallprompt", event);
// Stash the event so it can be triggered later.
window.deferredPrompt = event;
// Remove the 'hidden' class from the install button container
divInstall.classList.toggle("hidden", false);
});