简体   繁体   中英

Jquery/Ajax Refresh without reload or load the page?

I have a report page which dynamically generate the record and saved in the database. From database i need to show the dynamically updated records in the page without reload or load the contents using setInterval time function.

此代码http://pastie.org/937213每3秒将ajax.php加载到#live div

see my question Here

and use setInterval function with it

var refreshId = setInterval(function() 
{
    $("#yourContainer").load('yourPage.php');
}, 5000);

offcourse Jquery is prereq for this... so download jQuery from here and include it in your page

<script href="yourlink to the file"></script>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM