如何在 JSP 中检索 URL 片段标识符
有没有一种简单的方法可以在 JSP 中获取 URL 片段标识符(哈希“#”之后的所有内容)?我尝试过使用 ${pageContext.request.queryString}
和其他类似的 pageContext.request
方法来查找包含片段标识符的 URL 本身,但没有成功。
Is there an easy way to get the URL fragment identifier (everything after the hash '#') in JSP? I've tried just finding even the URL itself which includes the fragment identifier with ${pageContext.request.queryString}
and other similar pageContext.request
methods without success.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我已经意识到片段标识符永远不会发送到服务器!这就是为什么我似乎无法在 JSP 方法中找到它们......
I've realized fragment identifiers are never sent to the server! That's why I can't seem to find them in JSP methods...