gpt4 book ai didi

php - jquery post 显示加载消息直到成功

转载 作者:行者123 更新时间:2023-12-01 04:40:00 24 4
gpt4 key购买 nike

我有以下脚本,它根据表单参数从服务器获取数据。

 jQuery('#request_search').submit(function(e){
e.preventDefault();


var s_date=jQuery('#actualfrom').val();
var e_date=jQuery('#actualto').val();
var type=jQuery("#type").val();
var loc=jQuery("#loc").val();



jQuery.post("scripts/get_gamma_activity_type.php", {"loc":loc,"start_date":s_date, "end_date":e_date, "type":type}, function(data) {

jQuery('#report').html(data);});


});



});

这部分正在工作,有时根据搜索条件,需要几秒钟才能获得结果。同时我想展示一些 GIF 说明数据加载。我已经准备好了 GIF。上面的脚本如何实现呢?

最佳答案

请尝试一下这个。

jQuery('#request_search').submit(function(e){

$("#report").html("<div><img src='loading.gif' alt='Loading.. \n Please wait' title='Loading.. \n Please wait'` /></div>");
e.preventDefault();


var s_date=jQuery('#actualfrom').val();
var e_date=jQuery('#actualto').val();
var type=jQuery("#type").val();
var loc=jQuery("#loc").val();



jQuery.post("scripts/get_gamma_activity_type.php", {"loc":loc,"start_date":s_date, "end_date":e_date, "type":type}, function(data) {

jQuery('#report').html(data);});
});
});

关于php - jquery post 显示加载消息直到成功,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40524591/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com