我找到了以下代码here。这使您可以使用锚链接打开一个选项卡(divi选项卡模块)。但是我需要在鼠标悬停时打开链接的选项卡。有可能吗?
这里有代码:
<script>
jQuery(function ($) {
$('#open-tab a').on('click', function(event){
$('#my-tabs .et_pb_tab_n a').click();
$("html, body").animate({ scrollTop: $('#my-tab').offset().top }, 1000);
});
});
</script>