1
不太確定如何提出問題,但我的情況是這樣的...... 我有一行,其中包含幾個輸入框的表。當用戶按下add new
時,我已經設法在表中添加另一行。首先我創建一個名爲oldtable
的新變量,然後將它分割爲每個<tr>
..並將其保存到數組rows
。我用這個代碼:使用JavaScript輕鬆設置字段值
var newdata="";
for(i=0;i<rows.length;i++)
{
// adds the next row on...
newdata=newdata+rows[i]+"<tr>";
}
newdata=newdata+"MY NEW ROW GOES HERE!";
然後我去上表中innerHTML
重置爲newdata
變量。
所有的工作都很好,直到用戶在第一行輸入數據,然後在第二行添加數據。然後,第一行的值已經消失,可以理解。考慮到該表理論上可以具有用戶想要的行數,我怎樣才能保持第一行的值保持不變?有沒有辦法將數據插入表中而不重置那裏的內容?
謝謝。
var olddata = document.getElementById("products_table").innerHTML;
// This splits up each row of it
var rows = olddata.split("<tr>");
// Makes a variable where the new data is going to be stored
var newdata = "";
// This loop is to add back the existing html into the table, it is one short, because we Omit the "add new product" row.
for(i=0;i<rows.length-1;i++)
{
// adds the next row on...
newdata=newdata+rows[i]+"<tr>";
}
// Adds the additional html needed to
newdata=newdata+"my new row goes here!";
// Add newly edited table back in...
document.getElementById("products_table").innerHTML=newdata;
brillaint,萬分感謝: ) – 2010-08-25 03:26:49
另一件事,是否有可能添加行作爲倒數第二?作爲最後一排目前有一個「添加新行」的鏈接 – 2010-08-25 03:29:24
沒有了,得到它了,我在最後加了一個tfoot ..再次感謝 – 2010-08-25 04:00:50