我有一個由用戶輸入填充的表格。例如,有名字和姓氏的文本輸入。約翰在一個輸入中,而在下一個輸入史密斯時,將在名稱列下添加表格作爲約翰史密斯,一個包含2個值的字符串。這與地址列一起正常工作......但是從表中獲取值到輸入是問題。單擊相應的行填充輸入,但我需要拆分這些值以填充正確的輸入(以便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());
});
很好,謝謝。 – triplethreat77