1 Star 1 Fork 0

武侯 / MyApp

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
content.html 4.70 KB
一键复制 编辑 原始数据 按行查看 历史
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta content="initial-scale=1.0,maximum-scale=1.0,minimum-scale=1.0,user-scalable=no,width=device-width" name="viewport">
<title>个人中心</title>
<link rel="stylesheet" type="text/css" href="css/weui.css" />
<link rel="stylesheet" type="text/css" href="css/jquery-weui.css" />
<link rel="stylesheet" type="text/css" href="css/shequ.css"/>
<style>
#content_container{
position:fixed;
top:0;
width:100%;
height:45px;
background:#eee;
}
.left{
float:left;
padding:12px 0 2px 2px;
}
.right{
float:right;
padding:12px 2px 2px 0;
}
.weui_cell_bd p{
font-size: 14px;
font-family: 微软雅黑, Arial;
}
#cell_list{
margin-top:25px;
text-align:center;
}
.icon_back{
display:inline-block;
width:18px;
height:15px;
background:url(./images/back.png) no-repeat;
background-size:15px 15px;
}
.icon_next{
display:inline-block;
width:18px;
height:15px;
background:url(./images/next.png) no-repeat;
background-size:15px 15px;
}
</style>
</head>
<body>
<div id="content_container">
<div class="left" onclick="history.go(-1)"><i class="icon_back"></i>返回</div>
<div class="right" id="next_section">下一章<i class="icon_next"></i></div>
</div>
<!--content-->
<div id="cell_list">
</div>
<div class="weui_tabbar">
<a href="index.html" class="weui_tabbar_item ">
<div class="weui_tabbar_icon">
<img src="./images/iconfont-home.png" alt="">
</div>
<p class="weui_tabbar_label">首页</p>
</a>
<a href="cart.html" class="weui_tabbar_item">
<div class="weui_tabbar_icon">
<img src="./images/iconfont-cart.png" alt="">
</div>
<p class="weui_tabbar_label">视频</p>
</a>
<a href="faxian.html" class="weui_tabbar_item">
<div class="weui_tabbar_icon">
<img src="./images/iconfont-faxian.png" alt="">
</div>
<p class="weui_tabbar_label">娱乐</p>
</a>
<a href="wo.html" class="weui_tabbar_item weui_bar_item_on">
<div class="weui_tabbar_icon">
<img src="./images/iconfont-wo.png" alt="">
</div>
<p class="weui_tabbar_label"></p>
</a>
</div>
<script src="http://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js"></script>
<script src="js/jquery-weui.js"></script>
<script src="js/myapp.js"></script>
<script>
//获取bookid
var newarray = window.location.href.split("=");
var gettotal = window.location.href.split("+");
var getmsg = newarray[1];
var total = parseInt(gettotal[1]);
//获取到书目录
$.ajax({
type:"get",
url:"https://route.showapi.com/92-32?&showapi_appid=32868&showapi_sign=37c9611696e648c9b5febf972ebffb99&id="+getmsg,
dataType:"json",
success:function(msg){
var data = msg.showapi_res_body.bookDetails;
var code = msg.showapi_res_code;
var realid = data.id;
$('#next_section').click(function(){
realid ++;
if(realid>total){
$.toast("没有了", "forbidden");
}
//获取到书目录
else{
var speed=200;//滑动的速度
$('body').animate({ scrollTop: 0 }, speed);
//下一章
$.ajax({
type:"get",
url:"https://route.showapi.com/92-32?&showapi_appid=32868&showapi_sign=37c9611696e648c9b5febf972ebffb99&id="+realid,
dataType:"json",
success:function(msg){
var data = msg.showapi_res_body.bookDetails;
var code = msg.showapi_res_code;
if(code != -2){
var trs = "";
trs = '<div><h3 style="text-align:center;padding-top:20px">'+data.title+'</h3><p>'+data.message+'</p></div>';
$('#cell_list').html(trs)
}
else{
$('#cell_list').html("数据调用次数用完,请明日在试!")
}
},
error:function(){
$.alert("网络错误")
}
})
}//下一章可以
})
if(code != -2){
var trs = "";
trs = '<div><h3 style="text-align:center;padding-top:20px">'+data.title+'</h3><p>'+data.message+'</p></div>';
$('#cell_list').html(trs)
}
else{
$('#cell_list').html("数据调用次数用完,请明日在试!")
}
},
error:function(){
$.alert("网络错误")
}
})
</script>
</body>
</html>
HTML
1
https://gitee.com/wuhou123/MyApp.git
git@gitee.com:wuhou123/MyApp.git
wuhou123
MyApp
MyApp
master

搜索帮助