と私を助けることができる誰にも感謝!onclick returnとjavascript
<a onclick="return showPic(this); mostrarespectacular()" href="Imatges/productosnuevos/urbano01.jpg">  Circuito Espectacular Barcelona</a>
とスクリプトは次のとおりです:
私はこのコードを使用してテキストを持っている
<script type="text/javascript">
function showPic (whichpic) {
if (document.getElementById) {
document.getElementById('imgContenedor').src = whichpic.href;
if (whichpic.title) {
document.getElementById('imgDescripcion').childNodes[0].innerHTML = whichpic.innerHTML;
}
return false;
} else {
return true;
}
}
</script>
<script type="text/javascript">
function mostrarespectacular() {
div = document.getElementById('circuloespectacular');
div.style.display = 'inline';
}
function cerrarespectacular() {
div = document.getElementById('circuloespectacular');
div.style.display='none';
}
</script>
と私の問題は、最初の関数はしていた(完璧ではなく、二番目の作品であることをdivを表示)。私が間違っていることのアイデア?ありがとう!!
はい!それは私がアダムに言ったように!しかし、フェノーネに感謝! :) – user1249723
@アダムは同じ結論を出しました。私は私が私のことを投稿するまで、その反応を見たことはありませんでした。 :)とにかく働いてうれしい! – fenone