2022-02-14 13:45:20 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<title>Title</title>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div>
|
2022-02-23 13:29:48 +00:00
|
|
|
<button><a id="login" href="#"><h1>点击登录跳转学习强国app</h1></a></button>
|
2022-02-14 13:45:20 +00:00
|
|
|
</div>
|
2022-02-23 13:29:48 +00:00
|
|
|
<div id="wx"></div>
|
2022-02-14 13:45:20 +00:00
|
|
|
|
|
|
|
</body>
|
|
|
|
<script>
|
|
|
|
function load() {
|
|
|
|
let search = window.location.search
|
|
|
|
search = search.substring(1,search.length)
|
|
|
|
document.getElementById("login").setAttribute("href","dtxuexi://appclient/page/study_feeds?url="+search)
|
2022-02-23 13:29:48 +00:00
|
|
|
document.getElementById("login").click()
|
2022-02-14 13:45:20 +00:00
|
|
|
}
|
2022-02-23 13:29:48 +00:00
|
|
|
function isWeixin () {
|
|
|
|
let user= navigator.userAgent.toLowerCase();
|
|
|
|
if(user.match(/MicroMessenger/i)==="micromessenger") {
|
|
|
|
console.log('微信')
|
|
|
|
document.getElementById("wx").innerText = "检测到微信环境,请单击右上角选择浏览器打开跳转"
|
|
|
|
} else {
|
|
|
|
console.log('非微信')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
isWeixin()
|
2022-02-14 13:45:20 +00:00
|
|
|
load()
|
|
|
|
|
|
|
|
</script>
|
|
|
|
</html>
|