我想显示加载gif,直到用jquery mobile加载数据 但它不起作用..在控制台它给出了错误
Uncaught TypeError: Object #<Object> has no method 'loading'
这是我的页面:enter link description here
并在此页面中添加了代码
$.mobile.loading( 'show');
这不起作用:enter link description here
我的代码
<script type="text/javascript">
$('#details').live('pageinit', function (event) {
$.mobile.showPageLoadingMsg();
$("#listeu").empty();
$.getJSON('http://teknonova.com/Map/Home/getir3/1', function (data) {
答案 0 :(得分:0)
错误听起来好像jquery移动库没有正确加载(可能在jquery之前加载,init失败)或者jquery mobile版本不支持该方法。
我将使用开发控制台查看$ .mobile对象的内容以获取更多线索