我正在寻找一些在自定义 jQuery 函数中制作数组数据的教程,但我找不到任何教程。你能告诉我如何在 jQuery 函数的数组中创建一个数组吗?我想这样调用我的函数:
$(this).myPlugin({
data_first: '1',
data_second: {
first_word : 'Hello', second_word : 'World'
}
});
我的功能脚本
(function($) {
$.fn.myPlugin = function(data) {
return this.each(function() {
alert(data['data_first']+' bla bla '+ data['data_second'][first_word]);
});
}
})(jQuery);