使用 jqtouch 实现 ajax 加载微调器

发布于 2024-11-27 12:47:47 字数 744 浏览 1 评论 0原文

我想知道我需要什么 javascript 或 jquery 函数来获得与 jqtouch 一起使用的 ajax 加载旋转器。

我在页面上有一个搜索按钮,单击该按钮会提交到一个 php 文件,该文件处理搜索结果并逐行回显 html 中的结果 div ,jqtouch 自动放入一个新的 div 中(这是我的第一个 jqtouch 应用程序,但这似乎很标准,新的“页面”只是 html 中的新 div)。

我必须在搜索按钮上单击才能触发 javascript,因为“live”和类似的 jquery 函数不会在我正在测试的 iPhone 上运行。 Onclick II 知道调用一个函数来在页面上“显示”加载 div 并在我得到响应时隐藏它,但随后我迷失了如何检测 php 文件已完成处理页面结果,因为我不知道如何jqtouch 告诉我们这一点。

编辑

function popup(){
    $('#popup').ajaxStart(function(){
        $(this).show();
        });

    $('#popup').ajaxComplete(function(){
        $(this).hide();
        });     

    }

这可以在计算机上运行,​​但有一个错误,如我在下面对 bohzo 的回复中所解释的,我如何让它在 iPhone 上运行? 它位于一个函数内,因为 onclick 操作在我的 jqtouch 实现中是必需的。

I am wondering what javascript or jquery function I need to get an ajax loading spinner working with jqtouch.

I have a search button on a page which when clicked submits to a php file which processes the search results and echos back line by line the results in hthml within a
div which jqtouch automatically puts inside a new div (this is my first jqtouch application but this seems pretty standard, new 'pages' are simply new divs in the html).

I have to have an onclick on the search button to trigger the javascript, as 'live' and similar jquery functions won't on the iphone I am testing with.
Onclick I I know to call a function to 'show' a loading div on the page and hide it when i get a desponse but then I am lost how to detect that the php file has finished processing the page results as I don't know how jqtouch tells this.

Edit

function popup(){
    $('#popup').ajaxStart(function(){
        $(this).show();
        });

    $('#popup').ajaxComplete(function(){
        $(this).hide();
        });     

    }

This works on the computer but has a bug as explained in my response to bohzo below, how do I get it working on the iphone?
It's within a function as an onclick action is neccesary in my jqtouch implementation.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

飞烟轻若梦 2024-12-04 12:47:47

这在我的应用程序中适用于我。

    function SubmitSearch()
    {
      $("#loading_gif").show();
      $.post('url to the php file', {var1: searchkey}, function(data) {
        $("#loading_gif").hide();

        //do something with returned data
        alert(data);
       });
    }

您可以在 php 文件中捕获搜索关键字 $key = $_POST[var1];
希望这有帮助。

This is works for me in my app.

    function SubmitSearch()
    {
      $("#loading_gif").show();
      $.post('url to the php file', {var1: searchkey}, function(data) {
        $("#loading_gif").hide();

        //do something with returned data
        alert(data);
       });
    }

you can catch the search key in your php file as $key = $_POST[var1];
Hope this helps.

友谊不毕业 2024-12-04 12:47:47

这适用于使用 Zepto 的 jQTouch(尚未使用 jQuery 进行测试)。

CSS:

div#jqt #loading {
  background: rgba(0,0,0,0.5) url('../images/scanner/loading.gif') 50% 50% no-repeat;
  z-index: 999;
  position: fixed;
}

JS:

$(document).on('ajaxStart', function(){
    $('#loading').addClass('current');
});

$(document).on('ajaxStop', function(){
    $('#loading').removeClass('current');
});

This works for jQTouch using Zepto (haven't tested with jQuery).

CSS:

div#jqt #loading {
  background: rgba(0,0,0,0.5) url('../images/scanner/loading.gif') 50% 50% no-repeat;
  z-index: 999;
  position: fixed;
}

JS:

$(document).on('ajaxStart', function(){
    $('#loading').addClass('current');
});

$(document).on('ajaxStop', function(){
    $('#loading').removeClass('current');
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文