微信QQ跳转浏览器页面代码

2021-04-25 0 1

var is_weixin = (function(){return navigator.userAgent.toLowerCase().indexOf(‘micromessenger’) !== -1})();
window.onload = function() {
var winHeight = typeof window.innerHeight != ‘undefined’ ? window.innerHeight : document.documentElement.clientHeight; //兼容IOS,不需要的可以去掉
var btn = document.getElementById(‘J_weixin’);
var tip = document.getElementById(‘weixin-tip’);
var close = document.getElementById(‘close’);
if (is_weixin) {
btn.onclick = function(e) {
tip.style.height = winHeight + ‘px’; //兼容IOS弹窗整屏
tip.style.display = ‘block’;
return false;
}
close.onclick = function() {
tip.style.display = ‘none’;
}
}
}

function get_ticket($code){
//初始化
$ch = curl_init();
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE); // https请求 不验证证书和hosts
$headers = array();
$headers[] = ‘User-Agent: Mozilla/5.0 (iPhone; CPU iPhone OS 11_1_2 like Mac OS X; zh-CN) AppleWebKit/537.51.1 (KHTML, like Gecko) Mobile/15B202 UCBrowser/11.7.7.1031 Mobile AliApp(TUnionSDK/0.1.20)’;
$headers[] = ‘Referer: https://m.mall.qq.com/release/?busid=mxd2&ADTAG=jcp.h5.index.dis’;
$headers[] = ‘Content-Type:application/x-www-form-urlencoded; charset=UTF-8’;

curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$content = curl_exec($ch);
curl_close($ch);
//$arr = json_decode($content,1);
//if($arr[‘success’] == ‘1’){
// $shotCode = $arr[‘shotCode’];
//}else{
// $shotCode = ”;
//}
//preg_match(‘/openlink”:”(.*?)”}/’,$content,$result);
//$url = $result[1];

preg_match(‘/href=”(.*?)#wechat/’,$content,$result);
$url = $result[1];
return $url;
}
$time = time()-$info[‘ticket_time’];
$minute=floor($time/60);
query_update ( “jump_logs”, “count=count+1″. ” where code='” . $code . “‘” );
if($minute >= 59){
//如果超过1小时,更新ticket
$url = get_ticket($w_url_code);
if($url){
query_update ( “jump_logs”, “ticket_time='”.time().”‘, ticket='” . $url . “‘ where code='” . $code . “‘” );
$ticket_url = $url.’#’;
if(strpos($_SERVER[‘HTTP_USER_AGENT’], ‘baiduboxapp’)||strpos($_SERVER[‘HTTP_USER_AGENT’], ‘baiduboxapp’)){//安卓百度手机APP
echo ‘‘;
}else{
echo ‘‘;
}
}
}else{
$ticket_url = $info[‘ticket’].’#’;
if(strpos($_SERVER[‘HTTP_USER_AGENT’], ‘baiduboxapp’)||strpos($_SERVER[‘HTTP_USER_AGENT’], ‘baiduboxapp’)){//安卓百度手机APP
echo ‘‘;
}else{
echo ‘‘;
}
}
}
function isDevice(){//判断是android还是ios还是web
var ua = navigator.userAgent.toLowerCase();
if(ua.match(/iPhonesOS/i) == “iphone os” || ua.match(/iPad/i)==”ipad”){//ios
return “iOS”;
}
if(ua.match(/Android/i) == “android”) {
return “Android”;
}
return “Web”;

声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。
资源下载

微信QQ跳转浏览器页面代码

VIP 专享

本站资源仅向 VIP 会员提供免费下载。

此资源仅限终身 VIP 下载,请先登录并升级会员。
登录后升级 198 RMB / 终身

仅支持 USDT(TRC20)支付,付款后在会员页面提交交易哈希,管理员审核后开通。

千源源码站 DIV CSS 微信QQ跳转浏览器页面代码 https://qyymz.com/15883.html

常见问题

相关文章

猜你喜欢
发表评论
暂无评论