gpt4 book ai didi

javascript - 无法在动态表格上添加水平滚动条

转载 作者:太空宇宙 更新时间:2023-11-04 04:25:41 24 4
gpt4 key购买 nike

我在 Javascript 中尝试以下操作:

if (parseInt($('#' + tableName + 'Table').width()) > parseInt($('#' + tableName + 'Table').parent().width())) {
console.log("Here");
$('#' + tableName + 'Table').css('overflow-x', 'scroll');
}

它正在记录到控制台,但没有水平滚动条...

最佳答案

改变

$('#' + tableName + 'Table').css('overflow-x', 'scroll');

$('#' + tableName + 'Table').parent().css('overflow-x', 'scroll');

父元素是需要 overflow-x 属性的元素。

此外,此功能不需要 javascript。你可以只给父元素设置overflow-x: auto;,如果内容太宽,它会自动添加一个滚动条。

关于javascript - 无法在动态表格上添加水平滚动条,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18322713/

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