我正在使用此代碼編輯表上的數據,這允許我編輯數據,但我無法找到在哪裏以及如何在本地存儲數據如果我不想將它存儲在數據庫中,我想知道這個"/somewhere"
應該是什麼(url或某個文件或什麼)。
<table id="mylist_remark"><tr>
<td class="editable" contenteditable="true">Something</td>
</tr></table>
$("#mylist_remark .editable").bind("blur", function(e) {
console.log($(e.target).text());
$.post("/somewhere", {remark: $(e.target).text(), candidate_id: $(e.target).nearest("tr").attr("id")}, function() { console.log("success"); });
});
你不會*認爲*在客戶端寫數據! – paulsm4