在jsp页面中怎么用超链接跳到另一个jsp页面
1个回答
展开全部
jsp中利用a标签跳转到另外一个jsp的方法:
<!DOCTYPE html>
<html>
<head>
<title> New Document </title>
<meta name="content-type" content="text/html; charset=UTF-8">
</head>
<body>
<a href="<%=request.getRealPath("/")%>/b.jsp">跳转</a>
</body>
</html>
这个b.jsp必须放在工程的指定目录才能跳转。
<!DOCTYPE html>
<html>
<head>
<title> New Document </title>
<meta name="content-type" content="text/html; charset=UTF-8">
</head>
<body>
<a href="<%=request.getRealPath("/")%>/b.jsp">跳转</a>
</body>
</html>
这个b.jsp必须放在工程的指定目录才能跳转。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询