我有一个显示用户评论的网页。我默认页面显示最近的 10 个。在底部,当用户点击“显示更多”时,下方会出现另外 10 条评论。用户可以多次点击按钮,每次底部会多显示10条评论。问题是用户必须再次向下滚动。我想使用锚点来选择显示的最后一条评论。
在我看来,我有:
@{ int i = 1; }
@foreach (var item in Model) {
<div class="Comment" id="Comment-@i">
@Html.DisplayFor(modelItem => item.CommentText)
</div>
i++;
}
@{int numCommentsToDisplay = 10;}
@if (Session["numCommentsToDisplay"] != null) {
numCommentsToDisplay = Convert.ToInt32(Session["numCommentsToDisplay"]);
}
@Html.ActionLink("Show More", "Index", new { numCommentsToDisplay = numCommentsToDisplay + 10 })
我的控制器包含:
public ActionResult Index(int numCommentsToDisplay = 10) {
this.HttpContext.Session.Add("numCommentsToDisplay", numCommentsToDisplay.ToString());
var latestComments = db.Comments.Take(numCommentsToDisplay).OrderByDescending(c => c.TimeStamp).ToList();
return View(latestComments);
}
当用户第一次点击“显示更多”时,会显示20条评论,如何选择第11条评论?我已经设置了 ID 并手动导航到http://localhost:49208/Comment?numCommentsToDisplay=20#Comment-11
了
谢谢