gpt4 book ai didi

javascript - 代码与 IE 不兼容?

转载 作者:行者123 更新时间:2023-11-28 16:40:05 24 4
gpt4 key购买 nike

$(document).ready(function() {
var url = document.location.toString();
$('.tab').click(function() {
if($(this).is(".active")) {
return;
}

var classy = $(this).attr("class").split(" ").splice(-1);
var innerhtml = $('.content.'+classy).text();
$('#holder').html(innerhtml);
$('.tab').removeClass('active');
$(this).addClass('active');
});

var url = document.location.toString();

if(url.match(/#([a-z])/)) {
//There is a hash, followed by letters in it, therefore the user is targetting a page.
var split = url.split("#").splice(-1);
$('.tab.'+split).click();
}
else {
$('.tab:first').click();
}
});

嘿,我的一位评论者刚刚告诉我,这段代码在 IE 中不起作用。我一生都无法弄清楚为什么。每当您切换选项卡时,选项卡的内容都不会更改。同时#holder div 的内容是所有选项卡的组合。

有什么想法吗?

最佳答案

这不是你想要的答案,但我会 seriously recommend调查jQueryui tabs widget如果可以的话。至少,它让我的生活更容易处理这些事情。

关于javascript - 代码与 IE 不兼容?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1330227/

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