1. 程式人生 > >jquery獲得table當前行中的所有內容

jquery獲得table當前行中的所有內容

function getTd(obj){
    var td = $(obj).parents('tr').children('td');
    td.eq(0).find("select").val();
    td.eq(1).find("select").val();
    td.eq(2).find("select").val();
    //下拉列表使用
    td.eq(3).find("select").val()); 
    td.eq(0).attr("id");
}