为什么加了jquery mobile 会有 Loading 字样在页面底部?【已解决】

这是一个奇怪的问题,用了jquery mobile js库,页面底部就会出现Loading字样,

解决办法如下:

1,正常加上css样式

2,一定要在jquery mobile js库加载之前,设置 mobile.loadingMessage = false;具体如下:



    </span><span class="pln">jQM Complex Demo</span><span class="tag">
     name="viewport" content="width=device-width, height=device-height, initial-scale=1.0"/>
     rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css" />
     type="text/javascript">
        $(document).bind('mobileinit',function(){
            $.mobile.loadingMessage = false;
        })
        
     src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js">    


参考网页:

http://stackoverflow.com/questions/14802547/loading-massage-generated-at-the-bottom-of-the-page-in-jqm



你可能感兴趣的:(Web-H5-CSS3-JS)