博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
35-02单页面上拉加载例子
阅读量:4950 次
发布时间:2019-06-11

本文共 860 字,大约阅读时间需要 2 分钟。

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
<title>心得</title>
<script type="text/javascript">
function a(){
document.addEventListener("plusscrollbottom",b);
document.getElementById("list").innerHTML += "<li style='height:1000px;background:#ccc'>继续往下拉</li>";
}
var i=0;
function b(){
if(i!=3){
i++;
plus.nativeUI.alert('上拉刷新成功:'+i);
}else{
document.removeEventListener("plusscrollbottom",b);
plus.nativeUI.alert('到底啦!');
return '';
}
document.getElementById("list").innerHTML += "<li style='height:1000px;background:#ccc'>继续往下拉</li>";
}
</script>
</head>
<style>
li{line-height: 40px; height: 40px; border-bottom: #ccc dashed 1px;}
</style>
<body>
<ul id="list">
<li οnclick="a()">启动上拉加载</li>
</ul>
</body>
</html>

转载于:https://www.cnblogs.com/xhrs/p/9335354.html

你可能感兴趣的文章
Setting up a Passive FTP Server in Windows Azure VM(ReplyCode: 227, Entering Passive Mode )
查看>>
Atitit mtp ptp rndis midi协议的不同区别
查看>>
Ajax辅助方法
查看>>
Python模块调用
查看>>
委托的调用
查看>>
c#中从string数组转换到int数组
查看>>
Scrapy入门程序点评
查看>>
DotNetty网络通信框架学习之源码分析
查看>>
8.1 Android Basic 数据存储 Preferences Structured(分组的Preferences)
查看>>
原因和证明
查看>>
VC6.0图像处理2--图像的反色
查看>>
Snoop, 对WPF程序有效的SPY++机制
查看>>
Does not contain a valid host;port authority解决方法
查看>>
JAVA程序猿怎么才干高速查找到学习资料?
查看>>
使用axel下载百度云文件
查看>>
Qt中图像的显示与基本操作
查看>>
详解软件工程之软件测试
查看>>
WCF(二) 使用配置文件实现WCF应用程序
查看>>
【CodeForces 803 C】Maximal GCD(GCD+思维)
查看>>
python 去掉换行符或者改为其他方式结尾的方法(end='')
查看>>