我想使用jquery更改语言URL。我的网址为https://beta.yourtaxi.ch/de_DE/about-us/,只想更改https://beta.yourtaxi.ch/en_Us/about-us/。我尝试了下面的代码但没有工作。
$('a[rel="group"]').on('click', function(e) {
e.preventDefault();
location.href = $(this).data('wpurl');
$(this).attr('href', wpurl);
});

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="sidebar_lang">
<span>Language:</span>
<div class="lang_option">
<a href="<?php echo site_url(); ?>/en_Us/" data-wpurl="<?php echo site_url(); ?>/de_DE/" class="lang_txt" rel="group">DE</a>
<a href="<?php echo site_url(); ?>/de_DE/" data-wpurl="<?php echo site_url(); ?>/en_Us/" class="lang_txt" rel="group">EN</a>
</div>
</div>
&#13;
答案 0 :(得分:0)
您可以获取当前的路径,然后删除第一部分以附加到<a>
代码中的网址。
例如
const appendPath = location.pathname // current full path, eg "/de_DE/about-us/"
.split('/') // split on "/" -> ["", "de_DE", "about-us", ""]
.slice(2) // omit the first two parts -> ["about-us", ""]
.join('/') // join in to a slash-delimited string -> "about-us/"
location.href = $(this).data('wpurl') + appendPath