复制代码代码如下:
<script type = "text/javascript">
var Language = navigator.browserlanguage?navigator.browserlanguage:navigator.language;
アラート(言語);
if(Language.Indexof( 'en')> -1)document.location.href = 'engligh.htm';
else if(language.indexof( 'nl')> -1)document.location.href = 'dutch.htm';
else if(language.indexof( 'fr')> -1)document.location.href = 'french.htm';
else if(language.indexof( 'de')> -1)document.location.href = 'german.htm';
else if(language.indexof( 'ja')> -1)document.location.href = 'aganine.htm';
else if(language.indexof( 'it')> -1)document.location.href = 'italian.htm';
else if(language.indexof( 'pt')> -1)document.location.href = 'portuguese.htm';
else if(language.indexof( 'es')> -1)document.location.href = 'spenine.htm';
else if(language.indexof( 'sv')> -1)document.location.href = 'swedish.htm';
else if(language.indexof( 'zh')> -1)document.location.href = 'hisin.htm';
それ以外
document.location.href = 'English.htm';
</script>