1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <!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">
- <link rel="stylesheet" href="./index.css">
- <title>支付成功</title>
- <script>
- let ua = navigator.userAgent.toLowerCase();
- let isWeixin = ua.indexOf('micromessenger') != -1;
- if (!isWeixin) {
- window.location.href = "https://open.weixin.qq.com/connect/oauth2/authorize?appid=888"
- }
- function stopBack() {
- history.pushState(null, null, document.URL);
- window.addEventListener('popstate', function () {
- history.pushState(null, null, document.URL);
- });
- }
- function closeHandle() {
- document.addEventListener('WeixinJSBridgeReady', function () {
- WeixinJSBridge.call('closeWindow');
- }, false);
- WeixinJSBridge.call('closeWindow');
- }
- window.onload = function () {
- stopBack()
- }
- </script>
- </head>
- <body>
- <div class="main">
- <img src="./succImg.jpg" alt="" class="mainImg" style="margin-top: 100px;">
- <div class="back" onclick="closeHandle()">返回客服</div>
- </div>
- </body>
- </html>
|