0

在这里,我向 ajax.php 文件发送了一个 ajax 请求,

<script>
             $.ajax({
                        type: "post",
                        url: "ajax.php",
                        cache: false,               
                        data:{date: ondate, session:timing, t:time},
                        beforeSend:function(){
                        $('.book_table_right').html("<img src='<?php echo base_url();?>img/loader.gif'/>");
                        },
                        success: function(response){
                            $('.book_table_right').html(response);
                        },
                        error: function(){                      
                            alert('Error while Sending request..');
                        }
              });
</script>

HTML

在这里,我得到了响应,我在 div.book_table_right 中显示了该响应

但是当我再次刷新时, div.book_table_right 变空了。

为此,我正在考虑将响应存储到 cookie 中,

但是如何,请任何人都可以帮助我..

谢谢

4

0 回答 0