我是 ajax wordpress 的新手,我已经用 ajax 显示了帖子,但是现在我有问题我想用 ajax 显示上一篇文章,这意味着我已经用 ajax 显示了帖子,当用户点击一个帖子时,它会显示和单击浏览器后退按钮时,不会显示以前的帖子。谁能告诉我如何使用浏览器后退按钮显示上一个 wordpress ajax 帖子。这是我用过的代码
<script type="text/javascript">
jQuery(document).ready(function($) {
jQuery(".ajaxclick").click(function() {
var post_id1 = $(this).parent("li").attr("id");
var pageurl = $(this).attr('href');
alert(pageurl);
var ajaxURL = '<?php echo get_admin_url(); ?>admin-ajax.php';
$.ajax({
url: ajaxURL,
type: 'POST',
beforeSend: function() {
$("#loading-animation").hide();
$("#ajaxloader").show();
},
complete: function() {
$("#loading-animation").show();
$("#ajaxloader").hide();
},
data: {
action: 'load-content',
post_id: post_id1
},
success: function(response) {
jQuery("#loading-animation").addClass('loadingstyle');
jQuery("#loading-animation").html(response);
return false;
}
});
});
});
</script>