Last change
on this file since 13316 was
8771,
checked in by tiico, 14 years ago
|
First global commit for Piwecard plugin
|
-
Property svn:eol-style set to
native
|
File size:
1.0 KB
|
Line | |
---|
1 | <html> |
---|
2 | <head> |
---|
3 | <title>Test de formulaire</title> |
---|
4 | <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> |
---|
5 | |
---|
6 | </head> |
---|
7 | |
---|
8 | <body bgcolor="#FFFFFF"> |
---|
9 | <h1>Test de formulaire</h1> |
---|
10 | <br> |
---|
11 | <div id="data"> </div> |
---|
12 | <p><br> |
---|
13 | <script type="text/javascript"> |
---|
14 | |
---|
15 | function retrieve() |
---|
16 | { |
---|
17 | |
---|
18 | var parameters = location.search.substring(1).split("&"); |
---|
19 | var temp = parameters[0].split("="); |
---|
20 | mail = unescape(temp[1]); |
---|
21 | |
---|
22 | temp = parameters[1].split("="); |
---|
23 | sex = unescape(temp[1]); |
---|
24 | |
---|
25 | temp = parameters[2].split("="); |
---|
26 | city = unescape(temp[1]); |
---|
27 | |
---|
28 | var data = document.getElementById("data"); |
---|
29 | |
---|
30 | data.innerHTML = "Email: " + mail + "<br>"; |
---|
31 | data.innerHTML += "Genre: " + sex + "<br>"; |
---|
32 | data.innerHTML += "City: " + city + "<br>"; |
---|
33 | |
---|
34 | } |
---|
35 | |
---|
36 | retrieve(); |
---|
37 | |
---|
38 | </script> |
---|
39 | <br> |
---|
40 | <hr> |
---|
41 | <a href="lightbox-formulaire-demo.html" target="_parent">Retourner à la |
---|
42 | démo</a> - <a href="lightbox-formulaire.html" target="_parent">Retourner |
---|
43 | à l'article</a> - <a href="http://www.xul.fr" target="_parent">Retourner |
---|
44 | en page d'accueil.</a> |
---|
45 | <p></p> |
---|
46 | </body> |
---|
47 | </html> |
---|
Note: See
TracBrowser
for help on using the repository browser.