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 45 46 47 48 49
   | <html>
 
<head>
 
<style type="text/css">
 
 
 
</style>
 
<script type="text/javascript">
 
window.onload=function(){
 
	var adresse;
	var z=document.getElementById("cadre").getElementsByTagName("div");
 
	for(i in z){
		z[i].onclick=function(){
			adresse="http://mapage?id="+this.id.replace(/\D/g,'');
			alert(adresse)
		}
	}
}
 
</script>
 
 
</head>
 
<body>
 
 
<div id="cadre">
 
<div id="zone 1" style="width:800px;height:400px;background-color:blue">
</div>
 
<div id="zone 2" style="width:800px;height:100px;background-color:lime">
</div>
 
<div id="zone 3" style="width:800px;height:400px;background-color:gray">
</div>
 
</div>
 
</body>
 
</html> | 
Partager