码迷,mamicode.com
首页 > Web开发 > 详细

2个JSP页面传递参数

时间:2017-05-19 16:54:21      阅读:228      评论:0      收藏:0      [点我收藏+]

标签:传递方式   blog   index   doc   jsp   click   title   div   set   

跳转方式: window.location.href

参数传递方式:URL

JSP1代码:

技术分享
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
    <title>Title</title>
<script>
    function go() {
        //获取#dia的值
        var s = document.getElementById("dia").innerHTML;
        console.log(s);
        //实现页面之间的跳转和URL传递参数
        window.location.href = "index2.jsp?s="+s;
    }
</script>
</head>
<body>
   <div>
       <p id="dia">pass me</p>
       <button type="button" onclick="go();">click me</button>
   </div>
</body>
</html>
View Code

JSP2代码:

技术分享
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<%
    //接收URL传递来的参数
    String flowid = request.getParameter("s");
%>
<html>
<head>
    <title>Title</title>
</head>
<body>
    <p>使用wind.location.href跳转成功</p>
    //将参数显示到页面上
    <p>取得值为:<%=flowid%></p>
</body>
</html>
View Code

仅供复习知识点参考

2个JSP页面传递参数

标签:传递方式   blog   index   doc   jsp   click   title   div   set   

原文地址:http://www.cnblogs.com/diachan/p/6879020.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!