gpt4 book ai didi

javascript - jQuery 在循环中更改 this 的含义

转载 作者:行者123 更新时间:2023-11-30 07:25:12 25 4
gpt4 key购买 nike

 $(document).ready(function () {
var numbersArray = [10, 49, 90, 110, 150, 69, 59, 20, 20, 30];
for (var i = 0; i < numbersArray.length; i++) {
//any constructor magic to make this refer to the number?


$('#data').append(numbersArray[i]).append('<br/>');

}
});

假设我在这个循环中有很多工作要做。我是否可以通过更改 this 的含义来缩短我的代码并提高可读性?

最佳答案

你可以使用$.each

$.each([10, 49, 90, 110, 150, 69, 59, 20, 20, 30], function(){
// this is an instance of number whose value is the number
});

这可能就是您想要的。

关于javascript - jQuery 在循环中更改 this 的含义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19336303/

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