imges.jsp 888 B

12345678910111213141516171819
  1. <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
  2. <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
  3. <% String basePath = request.getScheme()+ "://" + request.getServerName() + ":" +request.getServerPort() + request.getContextPath(); %>
  4. <% String contextPath = request.getContextPath() ;%>
  5. <!DOCTYPE html>
  6. <html>
  7. <head>
  8. <script type="text/javascript" src="<%=basePath %>/js/jquery-1.8.0.min.js"></script>
  9. </head>
  10. <body>
  11. <img alt="" src="images/gs.png" width="100" onclick="open1('gs.png')">
  12. <img alt="" src="images/down.png" width="100" onclick="open1('down.png')">
  13. </body>
  14. <script type="text/javascript">
  15. function open1(id){
  16. window.open ('view.jsp?id='+id,'newwindow_'+new Date().getTime(),'height=100,width=400,top=0,left=800,toolbar=no,menubar=no,scrollbars=no, resizable=no,location=no, status=no,titlebar=no');
  17. }
  18. </script>
  19. </html>