这里我向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中,
但如何,请任何人帮助我..
由于