我正在尝试实现Ajax调用,以便在用户单击表中的链接时刷新页面的一部分。数据检索正常,但如果用户向下滚动到链接,则每次将表数据移动到顶部,这样他们就会失去位置。 https://usafcca.org/memorial
上的示例向下滚动并单击指向底部的链接,当右侧刷新时,将您移回顶部。关于如何解决这个问题的任何提示都很受欢迎。
答案 0 :(得分:0)
在您的链接上,更改onclick ...
@javax.ws.rs.ext.Provider
public class ContextInformationProducer {
@Produces
@RequestScoped
public ContextInformation create() {
ContextInformation contextInformation = new ContextInformation();
contextInformation.setBrowserUserAgent(httpHeaders.getHeaderString("User-Agent"));
}