使用如下脚本代码实现中英文网页切换。
<!–
if (navigator.appName == “Netscape”)
var language = navigator.language;
else
var language = navigator.browserLanguage;
if (language.indexOf(“zh-cn”) > -1) document.location.href = “http://www.fightfly.com/”;
else if (language.indexOf(“en”) > -1) document.location.href = “http://www.fightfly.com/index.htm”;
else
document.location.href = “http://www.fightfly.com/”;
//–>