你们能告诉我如何每 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)
}
});