Bonjour, voici mon souci.
Ma boucle ne s'effectue pas du tout,
ni à l'intérieur, ni en sortie de boucle de test (voir le code plus loin)
Bizarre. Pourquoi ?
Je vous mets mon code avec HTML.
Je n'ai aucun alert qui fonctionne.
Pour info, j'utilise Dreamweaver CS4.
Pour info, je teste en firefox, Chrome, IE8.
Cela ne fonctionne sur aucun.
Aidez-moi, je deviens fou avec ce truc, svp
<html>
<head>
...
<style>
....
</style>
<script type="text/javascript">
...
function zoomLon(imgUrl) {
if (ancimgUrl != imgUrl) {
alert("valeurs <>");
ancimgUrl = imgUrl;
document.getElementById("image_zoomL").width = 351;
document.getElementById("image_zoomL").height = 234;
document.getElementById("image_zoomL").src = imgUrl;
document.getElementById("zoomL").style.visibility = "visible";
}
else {
alert("valeurs =");
}
alert("sortie de boucle");
}
function zoomLoff() {
document.getElementById("image_zoomL").src = '';
document.getElementById("zoomL").style.visibility = "hidden";
}
...
</script>
</head>
<body>
...
<div id="zoomL"><img name="image_zoomL" width="351" height="234" id="image_zoomL"></div>
<div id="zoomH"><img name="image_zoomH" width="234" height="351" id="image_zoomH"></div>
<div id="photos">
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td height="150" bgcolor="#CCCCCC" align="center"><img onmouseover="zoomLon('travaux/20091010/DSC0003.jpg')" src="travaux/20091010/DSC0003x150.jpg" width="150" height="100" onmouseout="zoomLoff()"></td>
<td height="150"> </td>
<td height="150" bgcolor="#CCCCCC" align="center"><img onmouseover="zoomLon('travaux/20091010/DSC0005.jpg')" src="travaux/20091010/DSC0005x150.jpg" width="150" height="100" onmouseout="zoomLoff()"></td>
<td height="150"> </td>
<td height="150" bgcolor="#CCCCCC" align="center"><img onmouseover="zoomLon('travaux/20091010/DSC0011.jpg')" src="travaux/20091010/DSC0011x150.jpg" width="150" height="100" onmouseout="zoomLoff()"></td>
<td height="150"> </td>
<td height="150" bgcolor="#CCCCCC" align="center"><img onmouseover="zoomLon('travaux/20091010/DSC0014.jpg')" src="travaux/20091010/DSC0014x150.jpg" width="150" height="100" onmouseout="zoomLoff()"></td>
</tr>
...
</table>
</div>
...
</body>
</html>
jyd