Johannes Herta: dynamische Buttons: kein Bildwechsel im IE

Hallo,

eine dringende Frage: Verwende dynamische Buttons in meiner Homepage:
das Problem - der IE zeigt nur das ständige Bild an, nicht aber das Wechselbild. Anstatt dem Wechselbild kommt ein x (wie wenn man auf ein Bild Verweist was nicht da ist).

Quelltextauszug:

<script type="text/javascript">
...
Normal2 = new Image();
Normal2.src = "bilderlinks/zuchtstuten-gold.jpg";
Highlight2 = new Image();
Highlight2.src = "bilderlinks/zuchtstuten-weiß.jpg";

...function Bildwechsel (Bildnr, Bildobjekt) {
  window.document.images[Bildnr].src = Bildobjekt.src;
}
</script>

...<a href="verkauf/verkauf.html" target="rechts"
 onmouseover="Bildwechsel(3, Highlight4)"
   onmouseout="Bildwechsel(3, Normal4)"><img src="bilderlinks/verkauf-gold.jpg" alt="Verkauf" border="0" vspace="10" hspace="1"></a>

Beim Quelltext liegt der Fehler glaub ich nicht. Auch der Verweis ist richtig!
Das Problem entsteht auch nur wenn ich die Hompage auf den Serverlade und auch dann nur auf dem IE (auf der Festplatte tritt bei keinem Browser ein Problem auf)

Hoffe ihr könnt mir helfen:
unter http://www.dressur-fohlen.at/deutsch/links/l1.html kann man sich das Problem live anschaun!

lg Johannes

  1. Hallo!

    Vielleicht kommt der IE mit dem "ß" nicht zurecht? Funktioniert es, wenn du
    [code lang=javascript]
    Highlight2.src = "bilderlinks/zuchtstuten-weiss.jpg";
    [code]
    angibst?

    Der IE findet nämlich auch die Datei nicht, wenn man sie in der Adresszeile http://www.dressur-fohlen.at/deutsch/links/bilderlinks/fohlen-weiß angibt.
    Es kommt dann die Fehlermeldung:

    The requested URL /deutsch/links/bilderlinks/fohlen-weiß was not found on this server.

    Also hat er warscheinlich ein Problem mit dem Scharf-s.

    ciao, ww

    --
    Yet it seems that some have succeeded in finding a way which instead of leading you to a dead end offers you a way out - a way to freedom. Apparently, developing your physical abilities is like pressing harder against the wall of natural limits. And the harder you press the farther you are from true freedom which logically thinking is the direction opposite to the wall.
    1. Hallo ww,

        
      Highlight2.src = "bilderlinks/zuchtstuten-weiss.jpg";  
      
      


      http://www.dressur-fohlen.at/deutsch/links/bilderlinks/fohlen-wei�

      Geht doch!

      Gruß Gernot

      1. Hallo!

        Hmm...komisch. Warum ging es bei mir nicht? Ich kann keinen Fehler sehen. Aber danke, dass du es auf magische Weise verlinkt hast ;-)

        ciao, ww

        --
        Yet it seems that some have succeeded in finding a way which instead of leading you to a dead end offers you a way out - a way to freedom. Apparently, developing your physical abilities is like pressing harder against the wall of natural limits. And the harder you press the farther you are from true freedom which logically thinking is the direction opposite to the wall.
        1. habe d'ehre wucher

          Hallo!

          Hmm...komisch. Warum ging es bei mir nicht? Ich kann keinen Fehler sehen. Aber danke, dass du es auf magische Weise verlinkt hast ;-)

          -->

            
          man liest sich  
          Wilhelm
          
          1. code

            --> /code

          2. Hallo!

            Danke Wilhelm! https://forum.selfhtml.org/?t=143510&m=931755 hat mich auch schon drauf hingewiesen (Schreibt man "hingewiesen" so? ;-) ).

            ciao, ww

            --
            Yet it seems that some have succeeded in finding a way which instead of leading you to a dead end offers you a way out - a way to freedom. Apparently, developing your physical abilities is like pressing harder against the wall of natural limits. And the harder you press the farther you are from true freedom which logically thinking is the direction opposite to the wall.
            1. Hallo!

              Häh?! Eigentlich sollte der Link im Posting den Titel "Der Martin" haben, aber irgendwas ist falsch gelaufen. Ich habe den Link auch ohne /my/ angegeben? Komisch... In der Vorschau, wurde der Link zwar falsch dargestellt, aber in der Textarea wurde er richtig angezeigt...?!
              Hauptsache ist, dass es jetzt klappt:
              Der Martin

              ciao, ww

              --
              Yet it seems that some have succeeded in finding a way which instead of leading you to a dead end offers you a way out - a way to freedom. Apparently, developing your physical abilities is like pressing harder against the wall of natural limits. And the harder you press the farther you are from true freedom which logically thinking is the direction opposite to the wall.
    2. Hi,

      um deine Frage im Betreff aufzugreifen:

      [code lang=javascript]
      Highlight2.src = "bilderlinks/zuchtstuten-weiss.jpg";
      [code]

      Hier funktioniert dein [code] nicht wie gewünscht, weil es nicht korrekt abgeschlossen ist.

      Der IE findet nämlich auch die Datei nicht, wenn man sie in der Adresszeile http://www.dressur-fohlen.at/deutsch/links/bilderlinks/fohlen-weiß angibt.

      und [link] scheint sich hier auch an dem Sonderzeichen 'ß' zu stören. Ohne das geht's nämlich.

      Es kommt dann die Fehlermeldung:
      The requested URL /deutsch/links/bilderlinks/fohlen-weiß was not found on this server.

      Aha. Die URL der Bildressource wird also UTF8-codiert übertragen, der Server hält aber nichts von UTF-8 (bzw. er weiß es nicht). Sonderzeichen in URLs zu vermeiden ist auf jeden Fall eine gute Idee.

      So long,
       Martin

      --
      Gott hilft niemandem, er erfreut sich nur an unseren Leiden.
        (Ashura)
      1. Hallo!

        Highlight2.src = "bilderlinks/zuchtstuten-weiss.jpg";

        
        >   
        > Hier funktioniert dein [code] nicht wie gewünscht, weil es nicht korrekt abgeschlossen ist.  
          
        Hrrmpf...Klar. Danke! Habe ich irgenwie übesehen.  
          
        ciao, ww
        
        -- 
        Yet it seems that some have succeeded in finding a way which instead of leading you to a dead end offers you a way out - a way to freedom. Apparently, developing your physical abilities is like pressing harder against the wall of natural limits. And the harder you press the farther you are from true freedom which logically thinking is the direction opposite to the wall.