欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

QQ跳转支付宝并自动领红包脚本(最新)

程序员文章站 2023-01-19 13:27:54
前言 大半夜的有个哥们缠着我帮他写的(还硬塞300块给我) 丢给我一个别人的可用的demo给我,我研究一下就搞出来了,下面话不多说了,来一起看看详细的介绍吧。 代...

前言

大半夜的有个哥们缠着我帮他写的(还硬塞300块给我)

丢给我一个别人的可用的demo给我,我研究一下就搞出来了,下面话不多说了,来一起看看详细的介绍吧。

代码:

alipay.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> 
 <script src="https://open.mobile.qq.com/sdk/qqapi.js"></script>
</head>
<body>
 <script> 
 var qrurl = "https://ds.alipay.com/?from=mobilecodec&scheme=alipays%3a%2f%2fplatformapi%2fstartapp%3fsaid%3d10000007%26clientversion%3d3.7.0.0718%26qrcode%3dhttps%253a%252f%252fqr.alipay.com%252fc1x063287crpdxrhcynhd49%253f_s%253dweb-other&from=mobilecodec"; 
 function is_weixin() {  
  if (/micromessenger/i.test(navigator.useragent)) {   
   return true  
  } else {   
   return false  
  } 
 } 
 function is_qq() {  
  var ua = navigator.useragent.tolowercase();  
  if (ua.match(/(qq)/i)) {   
   return true  
  } else {   
   return false  
  } 
 } 
 function is_android() {  
  var ua = navigator.useragent.tolowercase();  
  if (ua.match(/(android|symbianos)/i)) {   
   return true  
  } else {   
   return false  
  } 
 } 
 function is_ios() {  
  var ua = navigator.useragent.tolowercase();  
  if (/iphone|ipad|ipod/.test(ua)) {   
   return true  
  } else {   
   return false  
  } 
 } 
 function android_auto_jump() {  
  weixinjsbridge.invoke("jumptoinstallurl", {}, function (e) {  
  });  
  window.close();  
  weixinjsbridge.call("closewindow") 
 } 
 function ios_auto_jump() {  
  if (qrurl != "") {   
   location.href = qrurl  
  } 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(is_qq()){  
  mqq.invoke("ui", "openurl", {   
   url: qrurl,   
   target: 2,   
   style: 0  
  }); 
 }else {  
  if (qrurl != "") {   
   location.href = qrurl  
  } else {   
   window.close()  
  } 
 }
 </script>
</body>
</html>

说明:

新建alipay.html

把代码拷贝进去保存

修改上面的 var qrurl = “”;里面的参数,c1x063287crpdxrhcynhd49这个参数,这个参数怎么来?

在支付宝赏金红包里面保存你的二维码

用微信扫码

可以获得

...

就是后面这一串了

然后上传到服务器或者虚拟主机,访问这个文件即可,记住在qq访问就可自动跳转。

而且只有安卓手机才可以,苹果机不行。

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,如果有疑问大家可以留言交流,谢谢大家对的支持。