如何导航到另一个 jspx?

发布于 2024-12-19 23:24:22 字数 198 浏览 0 评论 0原文

我在 jspx 上有一个链接,它将带您到另一个 jspx 页面。 例如,我在主页上,然后单击一个链接,该链接应打开一个名为 products 的 jspx。 我已经使用了这段代码

<a href="products">View all products</a>

,但它不起作用。我该怎么做?

I have a link on a jspx, which will take you to another jspx page.
For example, i'm on the homepage and then click on a link which should open a jspx called products.
I have used this code

<a href="products">View all products</a>

but it doesn't work. How would i do this?

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

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

发布评论

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

评论(1

空城仅有旧梦在 2024-12-26 23:24:22

href 应指向实际页面本身(使用有效的 URL),例如 products.jspx

示例:

<a href="products.jspx">View All Products</a>

如果您的产品页面位于另一个文件夹中:

<a href="folder/products.jspx">View All Products</a>

The href should point to an actual page itself (using a valid URL), such as products.jspx.

Example:

<a href="products.jspx">View All Products</a>

If your products page is within another folder:

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