Getting ERR_EMPTY_RESPONSE on $.POST

前端 未结 5 1922
野的像风
野的像风 2020-12-21 13:06

I have a simple social networking site with chat functionality. I have used $.post a lot in multiple pages. The code works well on all pages except message.php

5条回答
  •  一向
    一向 (楼主)
    2020-12-21 13:52

    This is good.

    var waiting=false;
    
    $(".abc").keyup(function(){
    
        if(!waiting){
             waiting = true;
             // code
             $.post('bbs.php',{a:a},function(abc){
                $(".showoff").html(abc);
                waiting=false;
             });
        }
     });
    

提交回复
热议问题