Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
別の jspx ページに移動する jspx のリンクがあります。たとえば、私はホームページにいて、products という名前の jspx を開くリンクをクリックします。このコードを使用しました
<a href="products">View all products</a>
しかし、うまくいきません。どうすればいいですか?
はhref、 などの実際のページ自体を (有効な URL を使用して) 指す必要がありますproducts.jspx。
href
products.jspx
例:
<a href="products.jspx">View All Products</a>
商品ページが別のフォルダ内にある場合:
<a href="folder/products.jspx">View All Products</a>