您可以在此处看到我的代码:https://codepen.io/Ananthavijay/pen/dQOrKo 如何将那里的JS代码转换成打字稿? JS代码:
$('.tab a').on('click', function (e) {
e.preventDefault();
$(this).parent().addClass('active');
$(this).parent().siblings().removeClass('active');
target = $(this).attr('href');
$('.tab-content > div').not(target).hide();
$(target).fadeIn(600);`enter code here`
});