Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道是否有人对如何让 Wordpress 在主页上自动加载新帖子而不是刷新页面有任何想法?
我想这可以通过 ajax/jQuery 来实现,但还没有找到任何建议。
非常感谢。
早上好
你可以这样做:
<script> var i = setInterval( function() { $(".posts").load('post.php'); //Whatever the php page to do the query against here }, 60000 //timeout in miliseconds ); </script>
如果出于某种原因需要停止 Interval,请使用:
clearInterval(i)