gif加载图片无法在jquery mobile中运行

时间:2014-12-17 11:56:34

标签: jquery cordova jquery-mobile loading gif

我们获取本地数据SqLiteDB。然后我们将数据显示到ListView。但它花了一些时间。所以我们需要loadingMessage喜欢这个 enter image description here

我们试过这个

$('#content').append('<img src="../images/Loading_Animation.gif" alt="US Flag" "/>');

但没有运气。请给我一个指南。请任何人告诉我是否有其他最好的方法

1 个答案:

答案 0 :(得分:0)

试试这个我希望它能起作用

   **HTML**

   //hide image where do you want to show
   <img src="filename.gif" id="loadinggif" style="display:none">

   **JQuery**

   //before ajax call show gif image

   $("#loadinggif").show();

   $.ajax({
     url: 'filename.php',
     type: 'POST',
     success: function(data) {

       //after ajax success hide gif

       $("#loadinggif").hide();     

       console.log(data);

     }

   });