jQuery Reload div onclick

时间:2015-10-07 17:00:43

标签: javascript jquery

每当我按下某个按钮时,尝试让jQuery重新加载我的目录中的.php文件。

(function($)
{
    $(document).ready(function()
    {
        $('.loadimg').hide();
        $.ajaxSetup(
        {
            cache: false,
            beforeSend: function() {
                $('.loadimg').show();
                $('#loadunasreports').hide();
            },
            complete: function() {
                $('#loadunasreports').show();
                $('.loadimg').hide();
            },
            success: function() {
                $('#loadunasreports').show();
                $('.loadimg').hide();
            }
        });

        var $container = $("#loadunasreports");
        $('#reloaddata').click(function() {
            $container.load("unasreport.php");
        });

    });
})(jQuery);

当我按#reloaddata时,它会显示并隐藏div,但它不会重新加载php中的div文件。但是,如果我每隔10秒动态加载一次,那就可以了,但这不是我想要的。

那我该怎么办?

0 个答案:

没有答案