Show a txt file on a webpage which updates every second

前端 未结 5 1725
失恋的感觉
失恋的感觉 2020-12-29 15:40

I\'m sort of shooting in the dark here; I have no knowledge how to do this so some pointers and/or links to helpful tutorials would be great:

I have a website that I

5条回答
  •  天涯浪人
    2020-12-29 16:23

    Using jQuery, you could do the following

    setInterval(function() {
        $('#element').load('/url/to/file');
    }, 1000);
    

    Would refresh the div with ID element with the file contents every 1 second

提交回复
热议问题