liuxiaolong
2019-05-09 0d1d88cdb668e75ea8609417ac18ae19947e9525
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title></title>
        <meta name="viewport" content="width=device-width, initial-scale=1,maximum-scale=1,user-scalable=no">
        <meta name="apple-mobile-web-app-capable" content="yes">
        <meta name="apple-mobile-web-app-status-bar-style" content="black">
 
        <link rel="stylesheet" href="css/mui.min.css">
    </head>
 
    <body>
        <header class="mui-bar mui-bar-nav">
            <h1 id="title" class="mui-title">下拉刷新和上拉加载更多</h1>
        </header>
        <div class="mui-content"></div>
    </body>
    <script src="js/mui.min.js"></script>
    <script type="text/javascript">
    if(sessionCache.getSessionCashe("userToken") == null){
            location.href="login.html";
        }
        //启用双击监听
        mui.init({
            gestureConfig:{
                doubletap:true
            },
            subpages:[{ 
                url:'pullrefresh_sub.html',
                id:'pullrefresh_sub.html',
                styles:{
                    top: '45px',
                    bottom: '0px', 
                }
            }] 
        });
    
        var contentWebview = null;
        document.querySelector('header').addEventListener('doubletap',function () {
            if(contentWebview==null){
                contentWebview = plus.webview.currentWebview().children()[0];
            }
            contentWebview.evalJS("mui('#pullrefresh').pullRefresh().scrollTo(0,0,100)");
        });
    </script>
 
</html>