jquery-mobile – 如何显示加载时使用JQuery Mobile

前端之家收集整理的这篇文章主要介绍了jquery-mobile – 如何显示加载时使用JQuery Mobile前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

Possible Duplicate:
07000

有一个JQuery的移动UI,当页面没有完全显示时如何显示加载?

解决方法

文件http://jquerymobile.com/demos/1.0a4.1/#docs/api/methods.html
$.mobile.pageLoading (method)

显示或隐藏页面加载消息,可以通过$.mobile.loadingMessage进行配置.
参数:
Done(布尔值,默认为false,表示加载已启动). True将隐藏加载消息.
例子:

//cue the page loader           
$.mobile.pageLoading(); 

//hide the page loader          
$.mobile.pageLoading( true );
原文链接:https://www.f2er.com/jquery/180286.html

猜你在找的jQuery相关文章