嗨,我在我的 android phonegap 应用程序中使用 jquery mobile。我正在使用 jquery mobile 在 onload 中显示加载程序,当加载程序运行时,我可以在 html 页面中输入文本框。但我需要的是加载程序运行时我不应该在文本框中输入。如何解决这个问题
这是我的代码:
$(document).ready(function ()
{
$.mobile.loading('show', {
text: 'Loading',
textVisible: true,
theme: 'a',
html:""
});
});
请帮助我。在此先感谢。