Hallo
hab da ein Problem,
wie unten gezeigt, bei Mausklick Bildwechsel, soweit sogut, auch dass das 1Bild ein href erhält,
Ich möchte aber auf Beiden Bildern ein href.
Also bei i_sound11.gif soll: <a href="../../../radio.htm">
und bei no_sound01.gif soll: <a href="../../../noradio.htm">
erscheinen.
Wie kann ich das machen?
Danke...
hab da ein Problem,
wie unten gezeigt, bei Mausklick Bildwechsel, soweit sogut, auch dass das 1Bild ein href erhält,
Ich möchte aber auf Beiden Bildern ein href.
Also bei i_sound11.gif soll: <a href="../../../radio.htm">
und bei no_sound01.gif soll: <a href="../../../noradio.htm">
erscheinen.
Wie kann ich das machen?
Danke...
PHP:
<html>
<head>
<script language="JavaScript" type="text/javascript">
function swapArrow(bild){
i_sound11 = new Image();
i_sound11.src = "i_sound11.gif";
no_sound01 = new Image();
no_sound01.src = "no_sound01.gif";
if(bild.src.indexOf('i_sound11.gif') == -1){
bild.src = i_sound11.src;
}
else{
bild.src = no_sound01.src;
}
}
</script>
</head>
<body>
<a href="../../../radio.htm">
<img src="i_sound11.gif" onClick="swapArrow(this)" width="45" height="45"></a>
</body>
</html>
Zuletzt bearbeitet von einem Moderator: