Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
JQuery Mobile 1.1.0 中的加载消息似乎不起作用。这是代码的JSFiddle。
当我使用 1.0b2 版本时,它按预期工作。这是 1.1.0 中的错误吗?
这不是一个错误。最新的 Jquery 支持更多的配置选项。您可以定义laoding消息主题等。
请参阅此处的文档
示例代码
$(document).bind("mobileinit", function(){ $.mobile.loadingMessageTheme = 'a'; $.mobile.loadingMessageTextVisible = true; });
将上述代码保存在 js 文件中(例如 config.js )并在导入 jquerymobile 框架之前将其导入。
祝你好运。