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.
您可以从当前位置确定语言,然后使用它来找到正确的锚点:
var lang; if (lang = location.href.match(/lang=([a-z]{2})/)) { $('[data-value=' + lang[1] + ']').addClass('active'); }