ping 192.168.xx.xx
如何添加加载更多按钮以使用ajax加载帖子?
答案 0 :(得分:0)
您将需要使用javascript(而不是php)来执行此操作,请查看此https://www.w3schools.com/jquery/jquery_ajax_get_post.asp。您将需要在html说
中添加按钮<button id="load_more" type="button">Load More</button>
然后在javascript中(这是使用jQuery的示例)
$("#load_more").click(function(){
$.get("your/route", function(data, status){
//here you can add the data to the page depending on what the data is
});
});
您的/路线是您在php中设置的用于获取更多帖子的路线