gpt4 book ai didi

javascript - 使用jquery将表头的值分配给相应的列

转载 作者:行者123 更新时间:2023-12-03 03:27:01 26 4
gpt4 key购买 nike

是否可以使用 jQuery/JavaScript 将标题列的值/文本分配给其相应的数据列记录?

喜欢id 列应具有 id 标题值,英文列应具有英文标题值等。

enter image description here

最佳答案

这是您的解决方案:

       $(document).ready(function(){
$('tr').find('td').each(function(i){
var ind = $(this).index();
var text = $(this).text();
var header_text = $('thead > tr').find('th:eq('+ind+')').text();
$(this).text(header_text+': '+text);
});
});

关于javascript - 使用jquery将表头的值分配给相应的列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46279186/

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