Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想为不同的本地人加载不同的 css 文件。例如,如果当前语言环境是英语,那么我想加载"main.css"文件。但是,如果当前语言环境是俄语,那么我想加载"main_ru.css"文件。
"main.css"
"main_ru.css"
我如何在jsp中做到这一点?
<link rel="stylesheet" type="text/css" href="main_${theCurrentLocale}.css">
当然,您可以将当前语言环境存储在theCurrentLocale请求或会话属性中。
theCurrentLocale