在这个问题上找不到任何有价值的答案:它是一个非常基本的 ajax 表单流程处理程序:
$(document).ready(function(){
});
function functionToUpdate(id)
{
var data = $('form').serialize();
$('form').unbind('submit');
$.ajax({
url: "Blahblah.php",
type: 'POST',
data: data,
dataType:"json",
beforeSend: function() {
},
success: function(msg)
{
},
error: function(XMLHttpRequest, textStatus, errorThrown) {
alert(req.responseText);
}
});
return false;
}
可以很好地更新 mysql 数据库中的内容。(这是一个 php 文件)我在 php 文件中检查值,并使用不同的检查,如 isset($Post) 等。
例如:
if(isset($_POST['submit']))
{
//do stuff here if button is clicked
}
else{
// play a nice error message
}
如何从 ajax 成功部分中显示的 url 获取此信息?像这样:(例如)
success: function(msg)
{
if(post = true)
{
$('#succesfull').html("Succesfull query").fadeIn(800)
}
else
{
$('#fault').html("U didn't fill stuff in, failed!").fadeIn(800)
}
},
比如这个不爽。但我只是无法从重点网址获取这些数据。
所有的帮助都得到了认可。