AJAX定时刷新

前端之家收集整理的这篇文章主要介绍了AJAX定时刷新前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
 /*第一次读取最新通知*/
  setTimeout(function() {
             Push();
           },200);
      /*30轮询读取函数*/
        setInterval(function() {

            Push();

    },30000);

/*请求函数的ajax*/

function Push() {


    $.ajax({

        type: "POST",
        url: "/index.PHP?s=Push&a=index",data: { t: 3 },
        beforeSend: function() {},success: function(data) { var obj = eval("(" + data + ")"); // alert(obj.sixin); if (obj.sixin != 0) { $(".tongzhi").html(obj.sixin).show(); } else { $(".tongzhi").html(0).hide(); }


        }


    });
原文链接:https://www.f2er.com/ajax/165431.html

猜你在找的Ajax相关文章