通过Ajax提交后显示结果

时间:2013-07-20 09:59:54

标签: php sql ajax

从我的表单提交结果并在sql中插入值之后我想要显示消息而不刷新页面。或者可能在没有用户点击刷新的情况下自动刷新。

3 个答案:

答案 0 :(得分:2)

成功部分你可以显示结果。

答案 1 :(得分:0)

    $(document).ready(function(){
$('#button').click(function(){
$.ajax({
 type: "POST",
 url: 'form.php',
// your data - this gets id="title" and put it on $_POST['val1']
 data: {val1:$('#title').val()},
// .done sends returned data to div id="bs"; you can use .append instead of .html for          overwriting the data.
}).done(function(data){
    $('#bs').html(data);
})
});
}
);

答案 2 :(得分:0)

如果您的要求成功,您可以使用jquery的不同功能来显示消息

$.ajax({
  url: "test.php",
  data: "user_id=" + user_id,
  type: "POST",
success: function(data) {
  $('#message_div_id').text("Your message").show();
 }
   });