通過徹底的研究,我能夠在我的表格中編輯和更新一個數據值。然而,當我試圖改變其中CONTENTEDITABLE可編輯,它消除了我的表格式(它實際上完全刪除表格格式,使我的想法毫無意義。contenteditable - jQuery將內容保存到網頁(以及添加和刪除)
這裏是我當前的代碼。
<div class="bs-docs-example">
<table class="table table-striped">
<thead>
<tr>
<th>#</th>
<th>IRC Name</th>
<th>Ingame Name</th>
<th>Position</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>[Cr|m|nAl]</td>
<td id="content2" contenteditable="true">Herbalist</td>
<td>Aeterna Top</td>
</tr>
<tr>
<td >2</td>
<td >bandido</td>
<td >Bananni</td>
<td >Aeterna Top</td>
</tr>
<tr>
<td>3</td>
<td>Funkystyle</td>
<td>Funkystyle</td>
<td>Aeterna Top</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<button id="save">Save Changes</button>
<!-- begin the script -->
<script src="js/jquery.js" type="text/javascript"></script>
<script>
var theContent = $('#content2');// set the content
$('#save').on('click', function() { // store the new content in localStorage when the button is clicked
var editedContent = theContent.html();
localStorage.newContent = editedContent;
});
if (localStorage.getItem('newContent')) { // apply the newContent when it is exist ini localStorage
theContent.html(localStorage.getItem('newContent'));
}
</script>
現在,理想情況下,我希望它能夠輸出如下面的截圖: http://i.imgur.com/R4TYhRB.png 「Ingame Name」列可編輯 添加行/刪除行,我也想實現,但我不太當然,如果你可以用這樣一個簡單的HTML表格來做到這一點
我的第一個問題 - 我將如何讓特定的行(即Ingame Name)成爲唯一可編輯的行?我很可惜有Javascript/Jquery和我的研究不幸,只允許我改進一行。 (我知道我大概可以複製的JavaScript/jQuery的,但肯定有一個更簡單的方法?)
二question-
是否有可能實際上增加的能力HTML表格添加/刪除行,而不擁有某種數據庫?
感謝有關這方面的任何指導。
你能添加在的jsfiddle什麼?所以我們可以更好地瞭解您使用的資源。 – stanley1943
https://jsfiddle.net/3enz61xy/ JS小提琴。我想編輯所有遊戲名稱行。 –