如何导航到另一个 jspx?
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
href
应指向实际页面本身(使用有效的 URL),例如products.jspx
。示例:
如果您的产品页面位于另一个文件夹中:
The
href
should point to an actual page itself (using a valid URL), such asproducts.jspx
.Example:
If your products page is within another folder: