获取table第一列的值,并进行字符串处理

根据tableid 获取第一列id值:

var cols="";

$("#tb  tr").each(function() {



        var text = $(this).children("td:first").text();


        cols += "'" + text + "'" + ",";
    })

    cols = cols.length > 0 ? cols.substring(3, cols.length - 1) : "";


如果第一列为复选框,获取选中的复选框的值,并做处理

var cols="";

 $("input:checkbox[name='cerrowId']:checked").each(function(){
        var text = $(this).val();
        cols += "'" + text + "'" + ",";
    })

你可能感兴趣的:(web前端)