gpt4 book ai didi

javascript - 单击 Tab 时替换窗口

转载 作者:行者123 更新时间:2023-12-04 07:15:53 25 4
gpt4 key购买 nike

我正在尝试为网站做一个语言切换器,我正在使用一个带有 2 个标签的标签元素 -
现在,当单击其中一个选项卡时,我正在尝试对 url 执行 window.location.replace。
所以标签 1 应该链接到 google.de,标签 2 应该链接到 google.com
我不太知道如何定义每个选项卡
这就是我得到的当前代码

<script>
// when DOM ready
$(document).ready(function() {
// if 'tab' item exists in localStorage
if(localStorage.getItem('tab')){
// click the respective tab button
// e.g. if 'tab' item value == 0
// click tab[0]
$('.tab-button')[localStorage.getItem('tab')].click();
}
});

// on tab click
$('.tab-button').click(function(){
// get its index
const index = $('.tab-button').index(this);
// store the index in localStorage
localStorage.setItem('tab',index);
});
</script>

最佳答案

<script>
// when DOM ready
$(document).ready(function() {
// if 'tab' item exists in localStorage
if(localStorage.getItem('tab')){
// click the respective tab button
// e.g. if 'tab' item value == 0
// click tab[0]
$('.tab-button')[localStorage.getItem('tab')].click();
}
});

// on tab click
$('.tab-button').click(function(){
// get its index
const index = $('.tab-button').index(this);
// store the index in localStorage
localStorage.setItem('tab',index);

if (index == 1) {window.open('google.de', '_self');}
else if (index == 2) {window.open('google.com', '_self');}
else {//open default window}

});
</script>

关于javascript - 单击 Tab 时替换窗口,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68770114/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com