我在这个页面上有 25 个元素:
<div id="test1"></div>
<div id="test2"></div>
<div id="test3"></div>
<div id="test4"></div>
<div id="test5"></div>
我也有在 div 中更新 html 的代码:
setInterval(function() {
$.post("./main/", {
record:1,
opt:'get_res'
}, function(data){
$test1=data;
});
}, 15000);
要更改所有块中的 html,我需要运行此代码 5 次,例如:
setInterval(function() {
$.post("./main/", {
record:1,
opt:'get_res'
}, function(data){
$test1=data;
});
}, 15000);
setInterval(function() {
$.post("./main/", {
record:2,
opt:'get_res'
}, function(data){
$test2=data;
});
}, 15000);
.....
.....
setInterval(function() {
$.post("./main/", {
record:3,
opt:'get_res'
}, function(data){
$test3=data;
});
}, 15000);
例如对于 25 个元素的 div 需要编写此代码 25 次 - 这将是非常大的代码。
请告诉我是否在循环中执行代码,以免重复多次?