如果我得到你真正想要的东西并假设你不更改 HTML 文件,那么这很容易,请执行以下操作const userLang = navigator.language || navigator.userLanguage; //1-this detects the browser language//2-in my case i use en-US, change it to zh-sg or any other language iso for chineseif(userLang === "en-US"){ //3-i used a nonScript class on <nonscript> tag to chnage the languagedocument.querySelector(".nonScript").textContent = "Change to chinese language";}您可以用来alert(userLang);检测您的浏览器语言并使用您获得的 iso 作为 if 条件