我有一个html表,它会显示一些记录。如果我想编辑特定的列字段来记录。我该怎么做?
我想从前端编辑表格。我使用php作为后端
答案 0 :(得分:1)
您可以使用contenteditable
的{{1}}属性,并使用更改单元格内容来调用更新查询。
html5
$(document).ready(function(){
$(document).on('blur','p',function(e){
e.preventDefault();
alert('changed..!');
/*$.ajax(
AJAX page which updates the cell content with the column name specified. Send the value and column name to the page and run the update query with it on the table.
);*/
});
});