我在这里阅读了很多关于使用 jQuery 更改站点语言的答案,但对我没有任何帮助。
好吧,我有一个网站作为示例:www.domain.com 在里面我有语言文件夹。/en/英文页面,/el/希腊文页面。英语和希腊语的所有页面都相同。index.html、gallery.html等
我在右上角的标题页中有两个标志图标来更改语言。我想,当用户点击英国国旗时,去/en/page.html
,当用户点击希腊国旗去时/el/page.html
。
<script>
$(document).ready(function(){
$('a').click(function() {
document.location.href =document.location.href.replace('/el/' '/en/');
});
});
</script>
这是我的html代码:
<head>
<a href="javascript:;"><img src="../images/flagen.gif"></a>
</head>
在此示例中,我在希腊页面rootwww/el/index.html上 ,我想将 /el/ 替换为 /en/ 文件夹路径并转到 /en/index.html
我做错了什么?