复制代码代码如下::
<script type = "text/javaScript">
var Sprache = Navigator.BrowserLanguage? Navigator.BrowserLanguage: navigator.language;
Alarm (Sprache);
if (Sprache.Indexof ('en')> -1) document.location.href = 'englisch.htm';
sonst if (Sprache.Indexof ('nl')> -1) document.location.href = 'dutch.htm';
sonst if (Sprache.Indexof ('FR')> -1) document.location.href = 'französisch.htm';
sonst if (Sprache.Indexof ('de')> -1) document.location.href = 'Deutsch.htm';
sonst if (Sprache.Indexof ('Ja')> -1) document.location.href = 'japanisch.htm';
sonst if (Sprache.Indexof ('it')> -1) document.location.href = 'italian.htm';
sonst if (Sprache.Indexof ('pt')> -1) document.location.href = 'portugiese.htm';
sonst if (Sprache.Indexof ('es')> -1) document.location.href = 'spanisch.htm';
sonst if (Sprache.Indexof ('SV')> -1) document.location.href = 'schwedisch.htm';
sonst if (Sprache.Indexof ('zh')> -1) document.location.href = 'chinesische.htm';
anders
document.location.href = 'englush.htm';
</script>