ユーザー入力によって入力されるテーブルがあります。たとえば、名と姓のテキスト入力があります。1 つの入力で John を入力し、次の入力で Smith を入力すると、[名前] 列の下に表が John Smith として追加され、2 つの値の 1 つの文字列になります。これは Address 列と一緒に正しく機能しています...しかし、テーブルから入力への値を取得することが問題です。対応する行をクリックすると入力が入力されますが、これらの値を分割して正しい入力を入力する必要があります (たとえば、John Smith が再度姓名に分割されるようにします)。何か案は?前もって感謝します。
jQuery
/* Add a click handler to the rows - this could be used as a callback */
$("#example tbody tr").click(function (e) {
if ($(this).hasClass('rowSelected')) {
$(this).removeClass('rowSelected');
} else {
oTable.$('tr.rowSelected').removeClass('rowSelected');
$(this).addClass('rowSelected');
}
var properties; // all td from .row_selected
properties = fnGetSelected(oTable).find("td");
$("#fName").val(properties.eq(0).text());
$("#email").val(properties.eq(1).text());
$("#company").val(properties.eq(2).text());
});