首页 > 代码库 > 2个JSP页面传递参数
2个JSP页面传递参数
跳转方式: 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 = "http://www.mamicode.com/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>
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>
仅供复习知识点参考
2个JSP页面传递参数
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。