t***@outlook.com
t***@outlook.com
  • 发布:2016-06-17 11:04
  • 更新:2016-06-17 11:04
  • 阅读:1090

预加载完自动显示?

分类:MUI
        //启用双击监听  
        mui.init({  
            gestureConfig: {  
                doubletap: true  
            },  
            subpages: [{  
                url: 'product_sub.html',  
                id: 'product_sub.html',  
                styles: {  
                    top: '45px',  
                    bottom: '51px',  
                }  
            }]  
        });  

        var search = null;  
        mui.plusReady(function() {  
            search = mui.preload({  
                id: 'search',  
                url: 'search.html',  
                show: {  
                    aniShow: 'none'  
                },  
                extras: {  
                    type: 'product'  
                }  
            });  
        });  

        $('.mui-search').click(function() {  

            showSearchPage();  
        });  

        function showSearchPage() {  
            mui.openWindow({  
                url: 'search.html',  
                id: "search.html",  
                show: {  
                    autoShow: true  
                }  
            });  
        }  

第一次切换到这个页面,预加载的search页面就自动显示出来了,怎么回事?

2016-06-17 11:04 负责人:无 分享
已邀请:

该问题目前已经被锁定, 无法添加新回复