我创建了一个像这样的加载显示方法
function customShowLoading(text){
$.mobile.loading( 'show', {
text: text,
textVisible: true,
theme: 'e',
html: ''
});
}
customShowLoading("Some message");
每次加载显示时,它只是为其文本说“加载” 而不是传入的参数消息。有什么想法吗?
答案 0 :(得分:0)
您是否尝试过切换"文字"变量到另一个名字?它可能是一些变量名称重叠。