-1

你们能告诉我如何每 30 秒向 php 脚本发出 jquery post 请求吗?Php 脚本正在向 mysql 写入一些数据。

$.ajax(
{

    type: 'POST',
    url: './postIt.php',

     data: {
     title: 'test',

     },
     success: function (good)
     {
     //handle success

     //alert(good)
     },
     failure: function (bad)
     {
     //handle any errors

     //alert(bad)

     }


});
4

2 回答 2

3

您可以使用 set interval 像这样不断地轮询。

    $(function() {
    setInterval(function() {
        $.ajax({
            type: 'POST',
            url: './postIt.php',

            data: {
                title: 'test',
            },
            success: function(good) {
                //handle success

                //alert(good)
            },
            failure: function(bad) {
                //handle any errors

                //alert(bad)

            }
        });
    }, 30000);
});
于 2013-02-12T05:19:20.873 回答
1

您可以为此使用setTimeoutsetInterval

于 2013-02-12T05:14:12.477 回答