我有这个 JS 代码,用于在单击时显示每个动态加载的帖子:
function showPost(id) {
$.getJSON('http://hopeofgloryinternational.com/?json=get_post&post_id=' + id + '&callback=?', function(data) {
var output='';
output += '<h3>' + data.post.title + '</h3>';
output += data.post.content;
$('#mypost').html(output);
}); //get JSON Data for Stories
} //showPost
当我在手机或 Windows 浏览器上测试页面“ http://howtodeployit.com/devotion/ ”时,单击“每日灵修消息”并在每个帖子之间导航时,我注意到之前访问过的帖子仍然会在新帖子之前显示几秒钟帖子被显示。
如何刷新页面或 DOM 以清除以前访问的页面。