jQuery 将一个表标题的属性复制到另一表中的所有表数据单元格

发布于 2024-09-27 02:55:55 字数 393 浏览 4 评论 0原文

我有以下 jQuery,它允许我将宽度和类从一个表的标题更新到另一个表的数据单元格。

目前,以下内容仅更新另一个表中的第一行,但我需要它来更新另一个表中的所有宽度和类以保持一致性:(

$($orginalHeaders).each(function(index) {
    $headWidth = $(this).attr('width');
    $headClass = $(this).attr('class');        
    $('#quotations').find('tbody tr td:eq(' + index + ')').attr({
        width: $headWidth,
        class: $headClass
    });
});

I have the following jQuery which will allow me to update the widths and classes from the header of one table onto the data cells of another.

Currently the following only updates the first row in the other table but i need it to update all the widths and classes in the other table for consistency :(

$($orginalHeaders).each(function(index) {
    $headWidth = $(this).attr('width');
    $headClass = $(this).attr('class');        
    $('#quotations').find('tbody tr td:eq(' + index + ')').attr({
        width: $headWidth,
        class: $headClass
    });
});

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

谁与争疯 2024-10-04 02:55:55

尝试

$('#quotations tbody tr').each(function(){
    $(this).find('td:eq(' + index + ')').css('width', $headWidth).addClass($headClass);        
});

Try

$('#quotations tbody tr').each(function(){
    $(this).find('td:eq(' + index + ')').css('width', $headWidth).addClass($headClass);        
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文