mirror of
https://github.com/kuaifan/dootask.git
synced 2025-12-13 12:02:51 +00:00
20 lines
393 B
HTML
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>
|