进度条加载消息未在JQuery mobile中显示

时间:2012-05-15 15:47:29

标签: jquery-mobile

JQuery Mobile 1.1.0中的加载消息似乎不起作用。以下是代码的JSFiddle

当我使用版本1.0b2时,它按预期工作。这是1.1.0中的错误吗?

1 个答案:

答案 0 :(得分:2)

这不是一个错误。最新的Jquery支持更多配置选项。您可以定义延迟消息主题等。

Refer the documentation here

示例代码

$(document).bind("mobileinit", function(){
    $.mobile.loadingMessageTheme = 'a';
    $.mobile.loadingMessageTextVisible = true;
});

将上述代码保存在js文件(例如config.js)中,并在导入jquerymobile framwork之前导入它。

祝你好运。