-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdetail.html
More file actions
executable file
·44 lines (42 loc) · 1.01 KB
/
detail.html
File metadata and controls
executable file
·44 lines (42 loc) · 1.01 KB
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
39
40
41
42
43
44
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Translation//EN">
<html>
<head>
<script src="var/b.js"></script>
</head>
<body>
<script type="text/JavaScript">
function getReferer (str)
{
if(str == '') return;
var wstr = str.slice(1);
var paare = wstr.split("&");
var paar, name, wert;
for (var i = 0; i < paare.length; i++)
{
paar = paare[i].split('=');
name = paar[0];
wert = paar[1];
name = unescape(name).replace("+", " ");
wert = unescape(wert).replace("+", " ");
this[name] = wert;
}
}
var liste = new getReferer(location.search);
document.write("<script src='var/"+ liste.x + ".js' type='text/javascript'><\/script>");
</script>
<table border="1" cellpadding="5" cellspacing="0">
<tr>
<th>Bezeichnung</th>
<td>Wert</td>
</tr>
<script type="text/javascript">
for (var i = 0; i < a.length; i++) {
document.write(
"<tr><td>" + b[i] + "</td>" +
"<td><code>" + a[i] + "</code></td></tr>"
);
}
</script>
</table>
</body>
</html>