1
$('#dependents-info').on('click', '.btn-edit-dependent', function() {
var currentTD = $(this).parents('tr').find('td');
//what code will I put here?
});
我希望在單擊「編輯」按鈕時使行可編輯,我該怎麼做?當使用javascript單擊編輯按鈕時,該行如何編輯?