jQuery 将一个表标题的属性复制到另一表中的所有表数据单元格
我有以下 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试
Try