繁体   English   中英

函数执行后重新加载页面

[英]Reload page after function execute

我有一个像下面这样的简单javascript代码,我想在fadeOut和fadeIn字段之后重新加载页面,但是我不知道应该将window.location.reload();放在哪里window.location.reload(); 功能。 你有什么建议吗 ? 我是JavaScript新手。

    <script>$(document).ready(function() {

        $('.updateButton').on('click', function() {
        var member_id = $(this).attr('member_id');
        var city = $('#city'+member_id).val();
        var continent = $('#continent'+member_id).val();
        var country = $('#country'+member_id).val();
        var id = $('#id'+member_id).val();

        req = $.ajax({
            url : '/deleteRequest',
            type : 'POST',
            data :
                {city : city,continent : continent,country : country,id : id}
        });
        req.done(function(data) {
            $('#city'+member_id).fadeOut(500).fadeIn(500);
            $('#continent'+member_id).fadeOut(500).fadeIn(500);
            $('#country'+member_id).fadeOut(500).fadeIn(500);
            $('#id'+member_id).fadeOut(500).fadeIn(500);
             });

    });
});
</script>

放入超时功能

  req.done(function(data) {
                    $('#city'+member_id).fadeOut(500).fadeIn(500);
                    $('#continent'+member_id).fadeOut(500).fadeIn(500);
                    $('#country'+member_id).fadeOut(500).fadeIn(500);
                    $('#id'+member_id).fadeOut(500).fadeIn(500);
                     setTimeout(function(){
                     window.location.reload();
                       },TotalTimeNeededbyThheAnimationInmiliseconds)
                     });

            });
req.done(function(data) {
        $('#city'+member_id).fadeOut(500).fadeIn(500);
        $('#continent'+member_id).fadeOut(500).fadeIn(500);
        $('#country'+member_id).fadeOut(500).fadeIn(500);
        $('#id'+member_id).fadeOut(500).fadeIn(500);
        window.location = '';  // This will reload your page.
});

这是更新的代码,您可以查看并尝试。 我已经合并了所有元素, fadeIn有一个回调,您可以在其中刷新页面。 因此,只有在fadeIn完成后才会重新加载页面:

$('#city' + member_id + ',#continent' + member_id + ', #country' + member_id + ', #id' + member_id).fadeOut(500).fadeIn(500, function() {
  location.reload();
});

你应该试试

req.always(function(){
    window.location.reload();
});

无论是否引起共鸣,它都会一直有效。如果您想在收到回复后重新载入,可以在这里查看教程。

在最新的jQuery中

弃用通知:

 The jqXHR.success(), jqXHR.error(), and jqXHR.complete() callbacks will be deprecated in jQuery 1.8. To prepare your code for their 

最终删除,请改用jqXHR.done(),jqXHR.fail()和jqXHR.always()。

使用.done() .fail().always()而不是success()error()complete()

我相信您只想在ajax成功时淡出和隐藏,因此将其放置在done()

如果您想在每次ajax完成时重新加载,请使用always()

例如:

req.always(function(){
   window.location.reload(false); 
// If we needed to pull the document from
//  the web-server again (such as where the document contents
//  change dynamically) we would pass the argument as 'true'.
});

要么

如果您都希望同时在done()

req.done(function(){
 // you fadein,fadeout code 

window.location.reload();
});

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM