Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 83d7efe

Browse files
committedMar 14, 2018
add jsp files
1 parent 52e279b commit 83d7efe

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+891
-0
lines changed
 

‎WebRoot/JavascrpitTest.jsp

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
2+
<%
3+
String path = request.getContextPath();
4+
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
5+
%>
6+
7+
<!DOCTYPE html>
8+
<html>
9+
<head>
10+
<base href="<%=basePath%>">
11+
<title>GavGard-Jstest</title>
12+
<link rel="stylesheet" type="text/css" href="mystyle.css" >
13+
</head>
14+
<%@ include file="head.jsp" %>
15+
<div id = "txt">
16+
<div class = "box">
17+
<a id = "box1" class = "jstest" title = "t1"> test 1: Smart Gavin</a>
18+
</div>
19+
<div class = "box">
20+
<a id = "box2" class = "jstest" title = "t2"> test 2: Make a dynamic Thor</a>
21+
</div>
22+
<div class = "box">
23+
<a id = "box3" class = "jstest" title = "t3"> test 3: To be continued, something about jQuery</a>
24+
</div>
25+
<div class = "box">
26+
<a id = "box4" class = "jstest" title = "t4"> test 4: Nothing</a>
27+
</div>
28+
</div>
29+
<%@ include file="end.jsp" %>
30+
</div>
31+
<script src="js/myjs.js"></script>
32+
<script src="js/jstest.js"></script>
33+
</body>
34+
</html>

‎WebRoot/META-INF/MANIFEST.MF

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Manifest-Version: 1.0
2+
Class-Path:
3+

0 commit comments

Comments
 (0)
Please sign in to comment.