简体   繁体   中英

div open itself in a new window from a jsp?

I have a jsp "template" view in which I am including content from several other jsp's. The content from the other jsp's is being included into a <div> in the template file.

Inside the included jsp's I want to have a hyperlink called "popup" (or whatever). When this link is clicked, then the content of this included jsp is "popped out" of the template jsp and opened into its own window.

eg:

template.jsp:

<body>
   <div>
      //include jsp-1.jsp
   </div>
   <div>
      //include jsp-2.jsp
   </div>
</body>

jsp-1.jsp:

<p>
  ...
  <a href="">Pop out</a> //Clicking this will open a new window
                         //containing only the contents of jsp-1.jsp
</p>

This shouldn't be too hard. I'm not sure if you have it set up so that the browser requests JSP files directly, but if so, something like this should work for you:

jsp-1.jsp:

<p>
  ...
  <a href="/jsp-1.jsp" target="_blank">Pop out</a>
</p>

Edit: re: your comment about losing the CSS and JS files, here's how I've solved this server-side. It's a little ugly, but it works just fine.

template.jsp:

<html>
<head>
...
</head>
<body>
   <c:set var="ContentOnly" value="true" scope="request"/>
   <div>
      <jsp:include page="jsp-1.jsp" />
   </div>
   <div>
      <jsp:include page="jsp-2.jsp" />
   </div>
   <c:remove var="ContentOnly" scope="request"/>
</body>
</html>

jsp-1.jsp:

<c:if test="${(empty ContentOnly) or (not ContentOnly)}">
    <html>
    <head>
    ...
    <!-- jsp-1 required CSS and JS here -->
    <!-- these will only be included when the page is requested as "standalone" -->
    ...
    </head>
    <body>
</c:if>
    ...
    <!-- jsp-1 content here -->
    ...
<c:if test="${(empty ContentOnly) or (not ContentOnly)}">
    </body>
    </html>
</c:if>

使用javascript window.open

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM