gpt4 book ai didi

javascript - 如何在自定义 jQuery 函数中制作数组数据?

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

我正在寻找一些教程来在自定义 jQuery 函数中制作数组数据,但我找不到。你能告诉我如何在 jQuery 函数中创建数组吗?我想这样调用我的函数:

$(this).myPlugin({ 
data_first: '1'
data_second: 'Hello'
});

我的函数脚本

(function($) {
$.fn.myPlugin = function(data) {
return this.each(function() {
alert(data[data_first]+' bla bla '+ data[data_second]);
});
}
})(jQuery);

最佳答案

你不会想要这个。

alert(data.data_first+' bla bla '+ data.data_second); 

那么你就不会尝试传递变量

这是您使用的对象,而不是数组

您可以像这样从对象获取值

data.data_first; // By string name thing

data['data_first']; // By String Name

var index = 'data_first';
data[index]; // By variable

关于javascript - 如何在自定义 jQuery 函数中制作数组数据?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18550297/

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