12345678910111213141516171819 |
- <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
- <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
- <% String basePath = request.getScheme()+ "://" + request.getServerName() + ":" +request.getServerPort() + request.getContextPath(); %>
- <% String contextPath = request.getContextPath() ;%>
- <!DOCTYPE html>
- <html>
- <head>
- <script type="text/javascript" src="<%=basePath %>/js/jquery-1.8.0.min.js"></script>
- </head>
- <body>
- <img alt="" src="images/gs.png" width="100" onclick="open1('gs.png')">
- <img alt="" src="images/down.png" width="100" onclick="open1('down.png')">
- </body>
- <script type="text/javascript">
- function open1(id){
- 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');
- }
- </script>
- </html>
|