我使用了这段代码 Change table cell from span to input on click - 替换一个内联编辑现在我想通过ajax发布值,我不知道如何。 我只想发布用户编辑的评论并在数据库中更新它们 这就是我到目前为止的方式:
$.ajax({
type: "POST",
url: "comments.php",//to update the comments
data: "data"
});
不确定下一步该放什么。用户单击输入区域时是否可以发布值?并且数据必须是serialize
吗?
提前谢谢!
答案 0 :(得分:0)
$.ajax({
type: "POST",
url: "comments.php",//to update the comments
data: {"comments":$("yourformId").serialize()},
success:function(res)
{
//Do what ever you want
}
});
在您的comments.php
print_r($_POST)
只会通过ajax为您发布已发布的数据
如果您使用form.serialize
,您将获得您提交的表单中的所有数据