“Как сделать Div Auto Refresh JS” Ответ

Как автоматически обновить div js

// Requires jQuery
<script src="http://code.jquery.com/jquery-3.1.1.js"></script>
<script type="text/javascript">
    function doRefresh() {
    $("#show").load("#show");
    document.getElementById("refresh").innerHTML = Math.random();
}
$(function () {
    setInterval(doRefresh, 5000);
});
Anthony Smith

Как сделать Div Auto Refresh JS

// Call the function and set the timer
setInterval(myFunction, 10000)
Anthony Smith

Ответы похожие на “Как сделать Div Auto Refresh JS”

Вопросы похожие на “Как сделать Div Auto Refresh JS”

Больше похожих ответов на “Как сделать Div Auto Refresh JS” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования