jquery:向对象添加自定义键值

发布于 2024-10-16 06:20:23 字数 256 浏览 0 评论 0原文

这段 jquery 代码有什么问题。它没有输出任何内容?

var imagesToLoad = [];

var name = 'hi';
var src = 'ho';

imagesToLoad[name] = src;

$.each(imagesToLoad, function(index, value) {
 alert(index + ': ' + value);
});

基本上我想在创建对象后向其添加自定义变量。

whats wrong with this jquery code. it is not outputting anyting?

var imagesToLoad = [];

var name = 'hi';
var src = 'ho';

imagesToLoad[name] = src;

$.each(imagesToLoad, function(index, value) {
 alert(index + ': ' + value);
});

basically i want to add custom variables to my object after it has been created.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

谁对谁错谁最难过 2024-10-23 06:20:23

Javascript 数组不支持非数字索引。您可能想使用一个对象来代替:

var imagesToLoad = {};
imagesToLoad.hi = 'ho';

$.each(imagesToLoad, function(index, value) {
 alert(index + ': ' + value);
});

Javascript arrays don't support non numerical indexes. You probably want to use an object instead:

var imagesToLoad = {};
imagesToLoad.hi = 'ho';

$.each(imagesToLoad, function(index, value) {
 alert(index + ': ' + value);
});
余厌 2024-10-23 06:20:23

您应该检查 $.each 方法的文档 - 它只接受回调函数作为参数,并且可以迭代仅通过 jQuery 对象

You should check the doc for $.each method - it accepts only callback function as parameter and it can iterate only over jQuery object

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文