我想做的是有一个按钮,您可以单击该按钮来刷新评论部分而无需重新加载页面。这看起来应该很简单,但我无法理解 Ajax。
(还没有按钮,只是一个间隔)
setInterval(function(){
$(".commentswrapper").load("html");
}, 10000);
Failed to load resource: the server responded with a status of 404 (Not Found)
localhost:8888/post-title/html
(链接中省略了 http://,因为 SO 不会让我将其包装在代码标签中或以其他方式发布)
那不应该只是刷新那个div的html吗?