本帖最后由 蓝洛水深 于 2018-1-5 13:53 编辑
你妹的,支付宝红包推广
- <!DOCTYPE html>
- <html lang="zh-cmn-hans">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <meta http-equiv="X-UA-Compatible" content="ie=edge, chrome=1">
- <title>正在打开支付宝</title>
- </head>
- <body>
- <script>
- var _0 = "https://qr.alipay.com/c1x09698k89b4px7qjv7ee7";
- var _1 = "https://qr.alipay.com/c1x09698k89b4px7qjv7ee7";
- function is_weixin() {
- if (/MicroMessenger/i.test(navigator.userAgent)) {
- return true
- } else {
- return false
- }
- }
- function is_android() {
- var a = navigator.userAgent.toLowerCase();
- if (a.match(/(Android|SymbianOS)/i)) {
- return true
- } else {
- return false
- }
- }
- function is_ios() {
- var a = navigator.userAgent.toLowerCase();
- if (/iphone|ipad|ipod/.test(a)) {
- return true
- } else {
- return false
- }
- }
- function android_auto_jump() {
- WeixinJSBridge.invoke("jumpToInstallUrl", {}, function (e) {});
- window.close();
- WeixinJSBridge.call("closeWindow")
- }
- function ios_auto_jump() {
- if (_0 != "") {
- location.href = _0
- } else {
- window.close();
- WeixinJSBridge.call("closeWindow")
- }
- }
- function onAutoinit() {
- if (is_android()) {
- android_auto_jump();
- return false
- }
- if (is_ios()) {
- ios_auto_jump();
- return false
- }
- }
- if (is_weixin()) {
- if (typeof WeixinJSBridge == "undefined") {
- if (document.addEventListener) {
- document.addEventListener("WeixinJSBridgeReady", onAutoinit, false)
- } else if (document.attachEvent) {
- document.attachEvent("WeixinJSBridgeReady", onAutoinit);
- document.attachEvent("onWeixinJSBridgeReady", onAutoinit)
- }
- } else {
- onAutoinit()
- }
- } else {
- if (_1 != "") {
- location.href = _1
- } else {
- window.close()
- }
- }</script>
- </body>
- </html>
复制代码 |