ChrisB: onclick funktion funktioniert nach verwendung teilweise nicht..

Beitrag lesen

Hi,

function WeiterLeitung(href){
    //Lies die aktuelle Seite
    var Besucher = document.URL;
    if(href === "de"){
        //Suche nach site
        var gsuche = Besucher.match(/[0-9][0-9]/);
        if(gsuche === null){
        var suche = Besucher.match(/[0-9]/);
        var Link = "http://meineseite.ch/index.php?site"+suche+"="+suche+"";
        if(Link === "http://meineseite.ch/index.php?sitenull=null"){
            Link = "http://meineseite.ch/index.php?site1=1";
        }
        location.href=Link;
        }else{
        var Link = "http://meineseite.ch/index.php?site"+gsuche+"="+gsuche+"";
        location.href=Link;
        }[/code[

else muss direkt auf den Block nach if folgenden – du hast aber [code lang=javascript]location.href=Link;

  
Und wieso wiederholst du dich eigentlich ständig? Da ist jede Menge Kram, der in allen ifs der gleiche ist …  
  
MfG ChrisB  
  

-- 
Autocomplete has spoiled me to a point where it happens every so often that I encounter a CAPTCHA, and I just type in the first character … and then wait for the rest of the code to be automatically suggested :/