みなさん、こんにちは。配列内の配列とその呼び出し方法について小さな質問があります...例:
var plotName = ['bearShevaPlot', 'haifaPlot', 'tiberiasPlot', 'kfarSabaPlot', 'netanyaPlot', 'rishonLezionPlot', 'rehovotPlot', 'telAvivPlot'];
var chartName = ['bearShevaCity', 'haifaCity', 'tiberiasCity', 'kfarSabaCity', 'netanyaCity', 'rishonLezionCity', 'rehovotCity', 'telAvivCity'];
すべての配列を呼び出し、それぞれに関数を実行するには、.eachjQuery関数を使用します。
$.each(plotName,function(cName,pName){
chartName[cName];
var pName = $.jqplot(''+chartName[cName]+'', [/* another var */], {
//my code here
});
});
3番目の変数が必要なため、次のような配列内に配列を配置します。
var plotName = [['bearShevaPlot', 'bearSheva'], ['haifaPlot', 'haifa'], ['tiberiasPlot', 'tiberias'], ['kfarSabaPlot', 'kfarSaba'], ['netanyaPlot', 'netanya'], ['rishonLezionPlot', 'rishonLezion'], ['rehovotPlot', 'rehovot'], ['telAvivPlot', 'telAviv']];
私の質問は、配列内の最初の配列の2番目の値である「bearSheva」をどのように呼び出すことができるかです。
あなたの助けに感謝し、私の悪い英語をお詫びします:)