send data with ajax when pressing enter

前端 未结 5 1206
无人共我
无人共我 2021-01-16 16:59

i have a form like this :

5条回答
  •  清酒与你
    2021-01-16 17:26

    $("#chat_in").keyup(function(event){
    if(event.keyCode == 13){
       //call send data function here
        SendData();
    } });
    

    try this

提交回复
热议问题