jsp实现点击链接,在另一页面获取链接的文本内容
求大侠指点!!!!!!!详细的说就是,a.jsp中的链接是从数据库中读出来的文章标题,我是想在a页面点击这些链接,然后转到b.jsp中处理能得到这个文章标题对应的文章内容...
求大侠指点!!!!!!!详细的说就是,a.jsp中的链接是从数据库中读出来的文章标题,我是想在a页面点击这些链接,然后转到b.jsp中处理能得到这个文章标题对应的文章内容,现在就是在b页面无法获取a中的链接文本啊!!!!真的钱了 解决了我一定默默祈祷,祝您工作开心顺利!!
展开
2个回答
2016-01-19 · 做真实的自己 用良心做教育
千锋教育
千锋教育专注HTML5大前端、JavaEE、Python、人工智能、UI&UE、云计算、全栈软件测试、大数据、物联网+嵌入式、Unity游戏开发、网络安全、互联网营销、Go语言等培训教育。
向TA提问
关注
展开全部
jsp中实现两个页面之间的传值方法如下:
举例说明:
建立两个JSP页面传值,tes1.jsp和test2.jsp。代码如宏尘扰下:
<%@pagelanguage="java"import="java.util.*"pageEncoding="GBK"%>
<%
Stringpath=request.getContextPath();
StringbasePath=request.getScheme()+"://"+request.getServerName()
+":"+request.getServerPort()+path+"/";
%>
>
<html>
<head>
<basehrefbasehref="<%=basePath%>">
<title>MyJSP'test1.jsp'startingpagetitle>
<metahttp-equivmetahttp-equiv="pragma"content="no-cache">
<兄亏metahttp-equivmetahttp-equiv="cache-control"content="no-cache">
<metahttp-equivmetahttp-equiv="expires"content="0">
<metahttp-equivmetahttp-equiv="keywords"content="keyword1,keyword2,keyword3">
<metahttp-equivmetahttp-equiv="description"content="Thisismypage">
<metahttp_equivmetahttp_equiv="refresh"content="5">
<scriptlanguagescriptlanguage="javascript"type="text/javascript">
functionexecute(){
varobj=document.getElementById("name");
document.form1.action="alipay/test2.jsp?param="+obj.value;
document.form1.submit();
}
script>
head>
<bodyonloadbodyonload="execute();">
<formnameformname="蔽旦form1"method="post">
<table>
<tr>
<td>
测试JSP页面传值<inputtypeinputtype="text"id="username"value="luodada">
</td>
</tr>
</table>
</form>
body>
html>
tset2.jsp的代码如下:
<%@pagelanguage="java"import="java.util.*"pageEncoding="GBK"%>
<%
Stringpath=request.getContextPath();
StringbasePath=request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
>
<html>
<head>
<basehrefbasehref="<%=basePath%>">
<title>MyJSP'test2.jsp'startingpagetitle>
<metahttp-equivmetahttp-equiv="pragma"content="no-cache">
<metahttp-equivmetahttp-equiv="cache-control"content="no-cache">
<metahttp-equivmetahttp-equiv="expires"content="0">
<metahttp-equivmetahttp-equiv="keywords"content="keyword1,keyword2,keyword3">
<metahttp-equivmetahttp-equiv="description"content="Thisismypage">
head>
<body>
<%
Stringvalue=request.getParameter("param");
out.print("从test1.jsp传递过来的值是"+value);
%>
body>
html>
具体思路如下:
在JSP页面传值test1.jsp中,通过JavaScript把文本框中的值获取出来,,使test1.jsp在加载进来的时候马上执行页面跳转;
在JSP页面传值test2.jsp中通过request.getParameter("参数名称");来获取test1.jsp传递过来的值即可。
举例说明:
建立两个JSP页面传值,tes1.jsp和test2.jsp。代码如宏尘扰下:
<%@pagelanguage="java"import="java.util.*"pageEncoding="GBK"%>
<%
Stringpath=request.getContextPath();
StringbasePath=request.getScheme()+"://"+request.getServerName()
+":"+request.getServerPort()+path+"/";
%>
>
<html>
<head>
<basehrefbasehref="<%=basePath%>">
<title>MyJSP'test1.jsp'startingpagetitle>
<metahttp-equivmetahttp-equiv="pragma"content="no-cache">
<兄亏metahttp-equivmetahttp-equiv="cache-control"content="no-cache">
<metahttp-equivmetahttp-equiv="expires"content="0">
<metahttp-equivmetahttp-equiv="keywords"content="keyword1,keyword2,keyword3">
<metahttp-equivmetahttp-equiv="description"content="Thisismypage">
<metahttp_equivmetahttp_equiv="refresh"content="5">
<scriptlanguagescriptlanguage="javascript"type="text/javascript">
functionexecute(){
varobj=document.getElementById("name");
document.form1.action="alipay/test2.jsp?param="+obj.value;
document.form1.submit();
}
script>
head>
<bodyonloadbodyonload="execute();">
<formnameformname="蔽旦form1"method="post">
<table>
<tr>
<td>
测试JSP页面传值<inputtypeinputtype="text"id="username"value="luodada">
</td>
</tr>
</table>
</form>
body>
html>
tset2.jsp的代码如下:
<%@pagelanguage="java"import="java.util.*"pageEncoding="GBK"%>
<%
Stringpath=request.getContextPath();
StringbasePath=request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
>
<html>
<head>
<basehrefbasehref="<%=basePath%>">
<title>MyJSP'test2.jsp'startingpagetitle>
<metahttp-equivmetahttp-equiv="pragma"content="no-cache">
<metahttp-equivmetahttp-equiv="cache-control"content="no-cache">
<metahttp-equivmetahttp-equiv="expires"content="0">
<metahttp-equivmetahttp-equiv="keywords"content="keyword1,keyword2,keyword3">
<metahttp-equivmetahttp-equiv="description"content="Thisismypage">
head>
<body>
<%
Stringvalue=request.getParameter("param");
out.print("从test1.jsp传递过来的值是"+value);
%>
body>
html>
具体思路如下:
在JSP页面传值test1.jsp中,通过JavaScript把文本框中的值获取出来,,使test1.jsp在加载进来的时候马上执行页面跳转;
在JSP页面传值test2.jsp中通过request.getParameter("参数名称");来获取test1.jsp传递过来的值即可。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询