在我的网站http://www.incognito.preart.grandhost.pl/上,当您进入任何页面时,都会有一个返回主菜单的链接(当您悬停标题时)。网站有 5 种语言。但是文本只有英文。需要在每种语言中都有文本“返回菜单”。
.js 代码:
var j = jQuery.noConflict();
j(document).ready(function() {
j("body").css("display", "none");
j("body").fadeIn(1000);
j("a.transition").click(function(event){
event.preventDefault();
linkLocation = this.href;
j("body").fadeOut(1000, redirectPage);
});
function redirectPage() {
window.location = linkLocation;
}
var prevText = j('div#lContent h2 a').text();
j('div#lContent h2 a').hover(function(){
j(this).text('Back to menu');
}, function(){
j(this).text(prevText);
});
});
我想我需要这样的东西:
- 如果在 url 中有
/en/
显示“返回菜单” - 如果在 url 中有
/fr/
显示“retour au menu”等。
有人可以帮我解决这个问题吗?