1
我正在尋找一些教程,使自定義jQuery函數中的數組數據,但我找不到任何。你能告訴我如何在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);
這就是工作:)感謝很多@Pinocchio –
嗨@ArryanggaAlievPratamaputra,請不要忘記接受的答案,如果這個答案真的幫助你。 – imsyedahmed