-1

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

4

3 回答 3

2

在成功部分,您可以显示结果。

        $.ajax({
                url: "file.php",
                data: "a=" + id,
                type: "POST",
                success: function(data) {
                    $("#anyid").html(data);
                }
            });
于 2013-07-20T10:04:54.573 回答
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);
})
});
}
);
于 2013-07-20T10:12:23.970 回答
0

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

$.ajax({
  url: "test.php",
  data: "user_id=" + user_id,
  type: "POST",
success: function(data) {
  $('#message_div_id').text("Your message").show();
 }
   });
于 2013-07-20T10:12:43.213 回答