jQuery 和 ajax 调用返回数据时进行导航

发布于 2024-10-03 08:22:59 字数 604 浏览 4 评论 0原文

我有一小段 jQuery/jqModal 代码,它工作得很好。但是,我试图添加在 ajax 调用成功(返回一些数据)时离开页面的功能。

$(document).ready(function () { 

    $('#jqmWindowContainer').jqm({ 
        modal: true, 
        ajax: ' –- my url –‘, 
        onHide: myAddClose, 
        overlay: 0, 
        ajaxText: 'Loading' 
    }); 

    function myAddClose(hash) { 
        hash.w.fadeOut('300', function () { 
            hash.o.remove(); 
            window.location.href = '/'; 
        }); 
    } 

}); 

在 myAddClose 函数中,如何有条件地调用“window.location”代码,而不是每次执行该函数时都调用它?我只想在 ajax 调用返回任何数据时进行导航。

谢谢!

瑞克

I have this little piece of jQuery/jqModal code which works fine. However, I am trying to add the ability to navigate away from the page when the ajax call succeeds (returns some data).

$(document).ready(function () { 

    $('#jqmWindowContainer').jqm({ 
        modal: true, 
        ajax: ' –- my url –‘, 
        onHide: myAddClose, 
        overlay: 0, 
        ajaxText: 'Loading' 
    }); 

    function myAddClose(hash) { 
        hash.w.fadeOut('300', function () { 
            hash.o.remove(); 
            window.location.href = '/'; 
        }); 
    } 

}); 

In the myAddClose function, how can I conditionally call the “window.location” code instead of calling it every time the function is executed? I only want to navigate if the ajax call returns any data.

Thanks!

Rick

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

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

发布评论

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

评论(1

叶落知秋 2024-10-10 08:22:59

看起来 jqModal 的文档中 onLoad 回调对您有用。

 $('#jqmWindowContainer').jqm({ 
    modal: true, 
    ajax: ' –- my url –', 
    onHide: myAddClose,
    onLoad: myFuncCalledWhenAjaxHasLoaded,
    overlay: 0, 
    ajaxText: 'Loading' 
}); 

It would seem looking at the documentation for jqModal that the onLoad call back would work for you.

 $('#jqmWindowContainer').jqm({ 
    modal: true, 
    ajax: ' –- my url –', 
    onHide: myAddClose,
    onLoad: myFuncCalledWhenAjaxHasLoaded,
    overlay: 0, 
    ajaxText: 'Loading' 
}); 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文