每当我按下某个按钮时,尝试让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秒动态加载一次,那就可以了,但这不是我想要的。
那我该怎么办?