如何将值设置为tfoot内的元素

时间:2015-07-09 06:54:37

标签: javascript

这可能是一个简单的问题但是我无法解决它,我想将值设置为th内的tfoot元素部分见下图

enter image description here

以下是代码

$('#'+tableId+" tfoot tr").each(function(i, object) {   
    $(this).find('th').each(function(j){
        //How to set value to th        
    });
});

如何将值设置为th。有任何帮助吗?

1 个答案:

答案 0 :(得分:1)

这不是价值,而是文字内容:

$('#'+tableId+" tfoot tr").each(function(i, object) {   
    $(this).find('th').each(function(j){
        $(this).text('Some text');
    });
});

您只需要决定将内容设置为的文本(或HTML)。