在 JSP 中跳转到锚点

发布于 2024-12-14 07:55:56 字数 202 浏览 0 评论 0原文

当跳转到 JSP 上的锚点时,HTML 锚点不起作用。例如,类似的

<a href="#name">Link</a>
...
<div id="name"></div>

失败是因为服务器实际上查找名为“filename.jps#name”的文件并返回错误。有什么解决方法吗?

When jumping to anchors on a JSP, HTML anchors do not work. Eg, something like

<a href="#name">Link</a>
...
<div id="name"></div>

fails because the server actually looks for a file named "filename.jps#name" and returns an error. Is there any workaround for this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

花之痕靓丽 2024-12-21 07:55:56

您所描述的称为 片段标识符 和目标可以是命名锚点或已识别元素,例如

<a href="#foo">go to foo</a>
<a name="foo">foo</a>
<div id="foo">foo</div>

此演示中演示的命名锚点变体

另请注意HTML5 规范 已弃用 name< a 元素的 /code> 属性已被删除,因此 id 将是 导航到片段标识符

What you describe is called a fragment identifier and the target can be a named anchor or an identified element, for example

<a href="#foo">go to foo</a>
<a name="foo">foo</a>
<div id="foo">foo</div>

with the named anchor variation demonstrated in this demo

Please also note that the HTML5 specification has deprecated the name attribute for a elements has been dropped, so an id would be the only HTML5 valid way to navigate to a fragment identifier.

贱人配狗天长地久 2024-12-21 07:55:56

我认为您已在文档中设置了 标记。所有标识符链接也都与其相关。如果这是真的,那么您需要将标识符链接从 更改为

<a href="#name">

另请

<a href="${pageContext.request.requestURI}#name">

参阅:

I think that you've set a <base> tag in your document. All identifier links are also relative to it. If this is true, then you need to change your identifier links from

<a href="#name">

to

<a href="${pageContext.request.requestURI}#name">

See also:

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文