Skip to content
// 在WordPress中通过插件或footer.php添加
jQuery(document).ready(function($) {
// 检测移动设备
if (window.innerWidth <= 768) {
// 为所有表格添加滚动包装器
$('table').each(function() {
if ($(this).width() > $(window).width() * 0.9) {
// 如果表格太宽,添加滚动容器
if (!$(this).parent().hasClass('table-scroll-wrapper')) {
$(this).wrap('');
}
}
});
}
});