-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (32 loc) · 840 Bytes
/
Copy pathindex.html
File metadata and controls
36 lines (32 loc) · 840 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<!DOCTYPE html>
<html>
<head>
<title>sample</title>
<script src="common.js"></script>
<meta charset="utf-8">
<style>
.jump{
text-align: justify;
margin-right: 10px;
float: left;
font-size:20px;
}
</style>
</head>
<body>
<input type="button" class="jump" name="search_albums" value="查詢" onclick="jump()"></input>
<input type="button" class="jump" name="upload" value="新增資料" onclick="jump()"></input>
<div style="clear:both;"></div><br>
<div id="roll" ></div>
<script>
function rickroll(){
var rick = new Image();
rick.id = "rick";
rick.src = "rickroll.gif";
rick.style.width = "500px";
document.getElementById("roll").appendChild(rick);
}
//rickroll();
</script>
</body>
</html>