2015-06-26 86 views
1

我是一個使用Web應用程序的新手。我有一個列表顯示在我使用servlet完成的JSP中。當它顯示在同一瀏覽器頁面上時,它可以正常工作。現在我想在彈出窗口中顯示相同的內容?我該怎麼做。我曾嘗試使用window.open,但它沒有幫助。它會拋出一個404錯誤。請找到下面的代碼。非常感謝。在JSP中彈出顯示數據

的index.html

<!DOCTYPE html> 
<html> 
<head> 
<meta charset="ISO-8859-1"> 
<title>Insert title here</title> 
</head> 
<body> 
<form action="servlet/Controller"> 
Enter your Id:<input type="text" name="City"/><br/> 
<a href="javascript:child_open()">Click me</a> 
<script type="text/javascript"> 
var popupWindow=null; 
function child_open() 
{ 
popupWindow =window.open('display.jsp',"_blank","directories=no, status=no, menubar=no, scrollbars=yes, resizable=no,width=600, height=280,top=200,left=200"); 
} 

</script> 

<input type="submit" value="search" onclick="child_open()"/> 
</form> 
</body> 
</html> 

Display.jsp

<%@ page language="java" contentType="text/html; charset=ISO-8859-1" 
    pageEncoding="ISO-8859-1"%> 
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %> 
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> 
<html> 
<head> 
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> 
<title>Insert title here</title> 
</head> 
<body> 


<div align="center"> 

    <table border="1" > 

        <h2>List of users</h2></caption> 
      <tr> 
       <th>ADDRESS_ID</th> 
       <th>ADDRESS_LINE1</th> 
       <th>ADDRESS_LINE2</th> 
       <th>ADDRESS_LINE3</th> 
       <th>CITY</th> 
       <th>COUNTRY_CD</th> 
       <th>ZIP</th> 
       <th>UPDATER</th> 
       <th>TIME_STAMP</th> 
      </tr> 
      <c:forEach var="user" items="${Data}"> 
       <tr> 
        <td><c:out value="${user.addressId} " /></td> 
        <td><c:out value="${user.addressLine1}" /></td> 
        <td><c:out value="${user.addressLine2}" /></td> 
        <td><c:out value="${user.addressLine3}" /></td> 
        <td><c:out value="${user.cityCd}" /></td> 
        <td><c:out value="${user.countryCd}" /></td> 
        <td><c:out value="${user.zip}" /></td> 
        <td><c:out value="${user.updater}" /></td> 
        <td><c:out value="${user.timeStamp}" /></td> 

       </tr> 
      </c:forEach> 
     </table> 
    </div> 
</body> 
</html> 
+0

你應該使用ajax。 –

回答