2017-03-27 94 views
-1

我想獲得datatables中的可編輯行數據,例如當我單擊列時,然後更改數據並獲取datatables中的值。使用jQuery獲取數據表中的可編輯行數據

我已經使用這種方法。

editor.on('postEdit', function() { 
     debugger; 
     oTable = $('#indexList').dataTable(); 
     var sData = oTable.fnGetData(this.s.editRow); 
     console.log(sData[0]); 
     alert('The cell clicked on had the value of ' + sData[0]); 
}); 

回答

0

下面的代碼將變換點擊TR元件與值一組輸入元件從TD標籤

$(document).on("click", ".data-table tr", function(){ 
    $(this).find("td").each(function(){ 
     var st = $(this).text; 
     $(this).html ("<input type='text' value='" + str + "'>"); 
    }) 
}) 
相關問題