我有两个工作功能。如何在 window.setInterval 内每分钟运行 $.getJSON(..)?
<script>
window.setInterval(function(){
functionCall(); // ??
}, 60000);
</script>
<script>
$(document).ready(function() {
var query = "SELECT * FROM schedule;";
$.getJSON(
'modules/mod_scheduler/updateList.php?query='+query,
function(data)
{
createChartControl('schedule', data);
}
);
});
</script>