我是靠谱客的博主 小巧紫菜,最近开发中收集的这篇文章主要介绍APP内资讯分享到朋友圈,推荐使用APP打开时先判断本地是否安装APP,安装的话直接打开APP预览资讯,未安装跳转到下载APP页面,觉得挺不错的,现在分享给大家,希望可以做个参考。
概述
<!DOCTYPE html>
<head>
<meta charset="UTF-8">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>资讯详情</title>
<link rel="shortcut icon" href="/static/favicon.ico" type="image/x-icon" />
<script src="/static/jquery-3.1.1.js" type="text/javascript"></script>
<style>
body{
max-width: 100%!important;
line-height: 200%!important;
font-family: "SimHei" !important;
letter-spacing:2px !important;
text-align: start!important;
word-wrap:break-word !important;
}
.header{
font-size: 16px!important;
}
.title{
font-size: 20px!important;
font-weight: bold!important;
}
.content p{
font-size: 16px!important;
padding: 0 !important;
text-indent: 2em!important;
}
img{
max-width: 100% !important;
height: auto!important;
border-radius: 4px!important;
}
p img{
display: block!important;
}
a{
text-decoration:none;
color: #4498EE;
}
</style>
</head>
<body>
<a id="linkToCart" href="#">APP内阅读,获得更多精彩内容</a>
<div class="title"></div>
<div class="header"></div>
<div class="content"></div>
<script>
//采用正则表达式获取地址栏参数
function getQueryString(name) {
var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)");
var r = window.location.search.substr(1).match(reg);
if (r != null) return decodeURIComponent(r[2]);
return null;
}
function getDateYmdhm (timestamp) {
if(timestamp){
var date = new Date(timestamp * 1000); // 时间戳为10位需*1000,时间戳为13位的话不需乘1000
var Y = date.getFullYear();
var M = (date.getMonth() + 1 < 10 ? "0" + (date.getMonth() + 1) : date.getMonth() + 1);
var D = date.getDate() < 10 ? "0" + date.getDate() : date.getDate();
var h = date.getHours() < 10 ? "0" + date.getHours() : date.getHours();
var m = date.getMinutes() < 10 ? "0" + date.getMinutes() : date.getMinutes();
return Y + "-" + M + "-" + D + " " + h + ":" + m;
}else{
return "";
}
}
var nid = getQueryString("nid");
//点击链接的时候调用
$("#linkToCart").click(function(){
var curPageUrl = window.document.location.href;
curPageUrl = curPageUrl.replace("https://","").replace("http://","");
var toUrl = "XXXnews://"+curPageUrl;//打开app的协议
var downloadUrl = "https://aicptest.xhkjedu.com/app.html";//测试环境下载app的地址
if (curPageUrl.indexOf("test" == -1)){
downloadUrl = "https://aicp.xhkjedu.com/app.html";//正式环境下载app的地址
}
var u = navigator.userAgent;
if(u.indexOf('MicroMessenger') > -1){//微信中打开
alert('点击右上角选择在浏览器中打开')
} else {
var isAndroid = u.indexOf('Android') > -1 || u.indexOf('Linux') > -1; //android终端或者uc浏览器
var isiOS = !!u.match(/(i[^;]+;( U;)? CPU.+Mac OS X/); //ios终端
if(isiOS){
var nowTime = new Date().valueOf();
var ifr = document.createElement("iframe");
ifr.src = toUrl;
ifr.style.display = "none";
document.body.appendChild(ifr);
window.setTimeout(function(){
document.body.removeChild(ifr);
var launchTime = new Date().valueOf() - nowTime;
if(launchTime < 2003) {//值要比设置的超时时间长不然总是会执行下载
window.location.href = downloadUrl;
} else {
window.close();
}
},2000)
} else {
var nowTime = new Date().valueOf();
window.location.href = toUrl;
window.setTimeout(function () {
var launchTime = new Date().valueOf() - nowTime;
if(launchTime < 2003) {//值要比设置的超时时间长不然总是会执行下载
window.location.href = downloadUrl;
} else {
window.close();
}
}, 2000);
}
}
});
$.ajax({
type: "post",
url: "/news/detail?nid=" + nid,
dataType: "json",
success: function(data) {
if (data.code == 0) {
var news = data.obj;
$(".title").html(news.ntitle);
$(".header").html(news.ntypename+" 发布于"+getDateYmdhm(news.createtime)+" 已阅读"+news.ncount+"次");
$(".content").html(news.ncontent);
var news_imgs = document.getElementsByTagName('img');
for(i = 0; i < news_imgs.length; i++){
news_imgs[i].src = news_imgs[i].src+"!newinfo";
}
} else {
alert(data.msg);
}
}
})
</script>
</body>
</html>
最后
以上就是小巧紫菜为你收集整理的APP内资讯分享到朋友圈,推荐使用APP打开时先判断本地是否安装APP,安装的话直接打开APP预览资讯,未安装跳转到下载APP页面的全部内容,希望文章能够帮你解决APP内资讯分享到朋友圈,推荐使用APP打开时先判断本地是否安装APP,安装的话直接打开APP预览资讯,未安装跳转到下载APP页面所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复