$(function(){
     
    var time=500;
    var interval;
 
    function run(){    
 
    interval=setInterval(fun,time);
    }
     
     
    function fun(){    
     
    $.ajax( {
            //alert();
        type : 'post',
        dataType : 'text',
        url : 'mynews!query',        
        success : function(data) {        
        alert();    
    },error:function(xhr){alert('出错\n'+xhr.responseText)}
    });
     
    };
    run();
    });

 

相关文章:

  • 2021-07-17
  • 2021-12-28
  • 2022-12-23
  • 2022-12-23
  • 2021-05-11
  • 2022-02-08
  • 2022-01-05
  • 2021-12-03
猜你喜欢
  • 2021-07-28
  • 2022-12-23
  • 2022-12-23
  • 2021-11-26
  • 2022-02-01
  • 2021-12-31
  • 2022-03-02
相关资源
相似解决方案