gpt4 book ai didi

javascript - 我有以下代码来刷新 div,而不是整个 html 页面

转载 作者:行者123 更新时间:2023-11-28 06:21:46 25 4
gpt4 key购买 nike

刷新后.....进入主页面但不在当前页面。刷新后会在同一页面怎么办。我有一个 index.html 页面,但有 6 个 swiper 幻灯片...

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script>
function autoRefresh_div()
{
$("#MyDIV").load("load.html");// a function which will load data from other file after x seconds
}
setInterval('autoRefresh_div()', 5000); // refresh div after 5 secs
</script>

最佳答案

希望对您有所帮助。

Index.html

<!DOCTYPE html>
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<link href="style.css" rel="stylesheet" />
</head>
<body>
<div id="myDiv">Loading...</div>
</body>
<script src="script.js"></script>
</html>

script.js

<script>
setInterval(function(){
$("#myDiv").load("sample.html");
}, 1000);
</script>

示例:http://plnkr.co/edit/jgIMZ9Y1l167VHFg32Ik?p=preview

关于javascript - 我有以下代码来刷新 div,而不是整个 html 页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35547893/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com