-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtupianku.html
38 lines (23 loc) · 1.22 KB
/
tupianku.html
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
37
38
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>图片库</title>
<body>
<ul> <li><a href="images/a.jpg"onclick="showPic(this);return false;"title="aaaaa">Fireworks</a></li> <li><a href="images/b.jpg"onclick="showPic(this);return false;"title="bbbbb">Coffee</a></li>
<li><a href="images/c.jpg"onclick="showPic(this);return false;"title="ccccc">Rose</a></li>
<li><a href="images/d.jpg"onclick="showPic(this);return false;"title="ddddd">BigBen</a></li>
</ul>
<img src="images/1.jpg" alt="my image gallery" height="488" id="placeholder">
<p id="description">Chiise an image.</p>
<script type="text/javascript" >
function showPic(whichpic){
var source = whichpic.getAttribute("href");
var placeholder=document.getElementById("placeholder");
placeholder.setAttribute("src",source);
var text = whichpic.getAttribute("title");
var description = document.getElementById("description");
description.firstChild.nodeValue = text;
}
</script>
</body>
</html>