我有一個URL,如http://myurleg.com/ar/Message.html
,我想用en
代替ar
,點擊它後。使用jquery從url中刪除特定區域
這意味着,如果我的網址是:http://myurleg.com/ar/Message.html
後單擊它應該成爲:http://myurleg.com/en/Message.html
我只是想
<script>
$(document).ready(function() {
$('#lng_flip').click(function() {
var url = window.location.href.split('/')[0];
});
});
</script>
誰能幫助?