gpt4 book ai didi

javascript - 刷新div内的php脚本

转载 作者:行者123 更新时间:2023-12-02 16:29:16 24 4
gpt4 key购买 nike

我目前正在使用以下脚本以 60 秒的时间间隔刷新 div 中的 messages.php。

<script>
jQuery().ready(function(){
setInterval("getResult()",60000);
});
function getResult(){
jQuery.post("messages.php",function( data ) {
jQuery("#msgs").html(data);
});
}
</script>
<div id="msgs">
</div>

我当前的问题是 php 文件的 echo 在 60 秒过去后第一次显示。然后每 60 秒刷新一次。我需要在启动页面时获取要加载的代码。

最佳答案

在 DOM Ready 上也调用 getResult()

<script>
jQuery().ready(function(){
getResult();
setInterval("getResult()",60000);
});
function getResult(){
jQuery.post("messages.php",function( data ) {
jQuery("#msgs").html(data);
});
}
</script>
<div id="msgs">
</div>

关于javascript - 刷新div内的php脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28449940/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com