我遇到了来自jquery mobile的加载小部件的问题。我使用版本 1.4.3 。
我有以下代码,但我从未看到加载小部件。
function .......() {
$.ajax({
url: "https://.........../......./.........svc/..../" + ..........,
type: 'GET',
contentType: "application/json;charset=utf-8",
beforeSend: function() {
$.mobile.loading("show", {
text: "some text",
textVisible: true,
theme: "a",
textonly: false,
html: ""
});
},
success: function (data) {
return data.RetValue;
},
error: function () {
return false;
}
});
}
我希望它显示加载面板,其中包含以下文字。
感谢您的帮助。