我试图在请求范围中设置值并获取另一个jsp,因为我点击按钮弹出窗口打开并获取空值,因为我的要求是获取其他jsp上的按钮值以验证用户的两段代码在按钮1上然后find by id
文本区域打开,如果单击按钮2,然后find by name
文本区域打开,则应关闭该弹出窗口
<HTML>
<HEAD>
<TITLE>Using Buttons</TITLE>
<script type="text/javascript">
function button1()
{
var mywindow= window.open("file.jsp", "file","status=1,width=350,height=150");
}
</SCRIPT>
</HEAD>
<BODY>
<H1>Using Buttons</H1>
<INPUT TYPE="BUTTON" name="butto" VALUE="Button 1" ONCLICK="button1()"/>
<% request.setAttribute("button1" ,"butto");%>
<% request.setAttribute("button1" ,"butto");%>
</BODY>
</HTML>
这是我的文件.jsp
<!
DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<%@ taglib prefix="c" uri="http://java.sun.com/jstl/core"%>
<%@ taglib prefix="fmt" uri="http://java.sun.com/jstl/fmt"%>
<%@ taglib prefix="sql" uri="http://java.sun.com/jstl/sql"%>
<%@ taglib prefix="x" uri="http://java.sun.com/jstl/xml"%>
<%@page
import="com.nousinfo.tutorial.employee.service.model.bo.EmployeeBO"%>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
</head>
<%= (String)request.getAttribute("button1") %>
<body>
</body>
</html>
为什么我得到空值
的错误是什么答案 0 :(得分:0)
通过简单调用window.open(),它不会将请求范围对象传递给其他jsp。如果不使用forward(),则无法将数据从请求范围发送到另一个JSP;
示例用法
RequestDispatcher rd = servletContext.getRequestDispatcher("/pathToResource");
rd.forward(request, response);
但是,在您的示例中,仅通过调用window.open()
就无法工作