如果它们处于活动状态,此脚本将使用 ajax 查询填充几个表,并清理非活动表:
$(".my_button_tables").on("click", function(event) {
var thetable = $(event.target).parent().next("table");
if (thetable.prop('rows').length) thetable.empty();
else {
fill_ajax($("#id_study").val(), thetable); // Fill the table
};
});
我想每 X 秒重新加载一次活动的 ajax 查询。我正在使用 setInterval 但代码有问题。有什么解决办法吗?