demo.html
760 Bytes
<h4>点击下列链接显示 - 页面loading</h4>
<a href="javascript:;" onclick="showLoader1()">基本用法</a>
<a href="javascript:;" onclick="showLoader2()">自定义提示文本</a>
<style>
h4 { margin: 10px; }
a {
display: block;
padding: 5px 16px;
color: #108ee9;
text-decoration: underline;
}
</style>
<script>
function showLoader1() {
Mobile_NS.showLoader();
// 模拟异步请求
setTimeout(function() {
Mobile_NS.hideLoader();
Mobile_NS.msg("加载完成1");
}, 1000);
}
function showLoader2() {
Mobile_NS.showLoader('拼命加载中...', 3);
// 模拟异步请求
setTimeout(function() {
Mobile_NS.hideLoader();
Mobile_NS.msg("加载完成2");
}, 1000);
}
</script>