mirror of
https://gitee.com/pan648540858/wvp-GB28181-pro.git
synced 2026-05-27 23:47:49 +08:00
25 lines
717 B
HTML
25 lines
717 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>下载</title>
|
|
</head>
|
|
<body>
|
|
<a id="download" download />
|
|
<script>
|
|
(function(){
|
|
let searchParams = new URLSearchParams(location.search);
|
|
var download = document.getElementById("download");
|
|
download.setAttribute("href", searchParams.get("url"))
|
|
download.click()
|
|
setTimeout(()=>{
|
|
window.location.href="about:blank";
|
|
window.close();
|
|
},200)
|
|
})();
|
|
|
|
</script>
|
|
</body>
|
|
</html> |