我想显示数据库中新插入的数据。我从另一个问题中找到了下面的代码,它做了我想要的,但它只在点击时显示数据。那么有人可以告诉我如何让数据每 5 秒自动加载一次吗?
<script type="text/javascript">
$(document).ready(function() {
$("#display").click(function() {
$.ajax({ //create an ajax request to load_page.php
type: "GET",
url: "second.php",
dataType: "html", //expect html to be returned
success: function(response){
$("#responsecontainer").html(response);
//alert(response);
}
});
});
});
</script>
<input type="button" id="display" value="Display All Data" />
<div id="responsecontainer" align="center">