gpt4 book ai didi

javascript - JavaScript 循环函数

转载 作者:行者123 更新时间:2023-12-03 08:21:35 26 4
gpt4 key购买 nike

我是javascript新手,我想通常使用“for”进行循环。我想复制这个脚本大约 10 ...如何循环这个脚本?

function getComboMotif1() {
$.get("file.php?opt1=" + $("#id1"), function (data) {
$("#asd1").html(data);
});
}

像这样的手动循环脚本!!

function getww1() {
$.get("file.php?opt1=" + $("#id1"), function (data) {
$("#asd1").html(data);
});
}

function getww2() {
$.get("file.php?opt1=" + $("#id2"), function (data) {
$("#asd1").html(data);
});
}

function getww3() {
$.get("file.php?opt1=" + $("#id3"), function (data) {
$("#asd1").html(data);
});
} //and further

最佳答案

类似的事情:

function getResource(which) {
$.get('file.php?opt1=' + $('#id' + which), function (data) {
$('#asd' + which).html(data);
}
}

for (var i = 0, max = 3; i < max; i += 1) {
getResource(i);
}

但是您的代码包含一些奇怪的地方。

  • $('#id1') 是一个 jquery 对象,因此它不能作为字符串发送到服务器。
  • 如果您始终在每个回调中替换 $('#asd1').html(data),那么每次您从服务器获得答案时,它都会被覆盖。这就是为什么我也让它变得动态。

关于javascript - JavaScript 循环函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33728164/

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