refresh div to retrieve information from database without refreshing wholepage

前端 未结 2 1092
一向
一向 2021-01-07 04:07

I would like to refreash the div auto every 2 seconds without reloading the page how can i do this with jquery i did try some solutions but they did not work if

2条回答
  •  借酒劲吻你
    2021-01-07 04:35

    Change this line

    $("#auto").load('conversation.php'+$hash)}, 2000);
    

    to this

    $("#auto").load('conversation.php'+'')}, 2000);
    

    Because your $hash is PHP variable, but you are not inside a PHP block, you are unable to access it.

提交回复
热议问题