简单的HTML内部链接问题

发布于 2024-09-17 05:46:24 字数 309 浏览 9 评论 0原文

奇怪的、简单的 HTML 内容并没有按预期工作。 在第 1 页上,有一个名为 page1.cfm 的 Railo 脚本, 它有以下行: 转到第 2 页,第 2 部分 因此,我们预计该链接会将用户带到 page2.html 页面的第 2 部分,并且该部分和内部链接标记存在于 page2.html 上。

但使用 Firefox 3.6.x 进行测试时,该链接只是转到 page2.html,而不是 pag2.html 的第 2 部分。怎么会?

我在这里缺少什么?

谢谢。

Weired, simple HTML stuff didn't work as expected.
On page 1, a Railo script named page1.cfm,
it has the following line:
<a href="page2.html#part2">Go To Page 2, Part 2</a>
so, we expect the link would bring the user to the page2.html page's Part 2 section and yes this section and the internal link tag exists on page2.html.

But tested with Firefox 3.6.x, the link simply goes to the page2.html instead of the pag2.html's Part 2 section. How come?

What am I missing here?

Thanks.

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

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

发布评论

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

评论(3

墨落画卷 2024-09-24 05:46:25

小写/大写可能存在一些问题,如果评估整个 DOM,则名为“part2”的重复条目可能会导致类似的错误(检查 name-attribute 以及 id)。为了更好地理解问题,需要确切的代码。

There might be some issue with lower/uppercase, if the whole DOM is evaluated a duplicate entry named "part2" might lead to a similar error (check name-attribute as well as id). To get a better understanding of the problem, the exact code would be needed.

人生戏 2024-09-24 05:46:25

如果您能够发布一小段代码来演示该问题,那将会很有帮助。除此之外,您还可以尝试一些一般性的操作:

  • 尝试看看是否可以仅使用直接的 HTML 和 HTML 来重现您当前在 FF 中遇到的错误。 JavaScript。 (我会猜测 - '否')
  • 尝试使用 .CFM 文件使用尽可能小的测试用例来重现错误。
  • 使用 JSLint 检查您的任何/全部 Javascript。
  • 检查 FireFox 的 Bugzilla 是否有任何已知的 .cfm 问题。

通常,刚开始隔离问题就可以突出一些看不见的问题,从而使您能够快速解决问题。如果错误仍然存​​在,请告诉我们,我们可以从那里开始......

干杯。

It would be helpful if you were able to post a small section of code that demonstrates the problem. Outside of that, there's a few general things you can try:

  • Try to see if you can reproduce the bug that you're currently experiencing in FF with just straight HTML & Javascript. (I'm going to guess - 'No')
  • Try to reproduce the bug using the smallest possible test case with your .CFM files.
  • Check any/all of your Javascript with JSLint.
  • Check FireFox's Bugzilla for any known .cfm issues.

Often, just starting to isolate the issue can highlight little unseen problems that allow you to solve it quickly. If the bug persists, let us know, and we can go from there....

Cheers.

幽蝶幻影 2024-09-24 05:46:24

这可能只是页面长度的问题,如果页面可以滚动,则视图端口只能滚动到#part2部分。

It might be simply a question of page-length, the view port can only scroll to have #part2 section if the page can scroll.

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