dootask/public/site/index.html
2023-07-25 01:46:43 +08:00

20 lines
393 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
</body>
<script>
// 判断浏览器语言
var language = (navigator.language || navigator.browserLanguage).toLowerCase();
if (language.indexOf('zh') > -1) {
window.location.href = './zh/index.html'
} else {
window.location.href = './en/index.html'
}
</script>
</html>