ここでは、1 つの ajax リクエストを ajax.php ファイルに送信しています。
<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 に保存することを考えています。
でもどうやって、誰か助けてください..
ありがとう