2

< 1300在列表中有大约数组。未来阵列数量有望增长

这就是我列出它们的方式:

var listofarrays{
 listone:['string element', 'another string element'],
 listtwo:['string element', 'another string element'],
 listhree:['string element', 'another string element'],
 listfour:['string element', 'another string element']
// ... and so on ... the lists over contain a lot of arrays.
//I figured it was best to not copy/paste it all.
};

我的问题是:

  1. 添加更多数组会有什么问题吗?
  2. 如何使用最少的存储空间来保存所有这些数组?
4

1 回答 1

0
  1. 添加 = 性能降低。
  2. 如何解决?我建议使用 AJAX 加载所需的数据。

我举了一个更好的可视化 JQuery Autocomplete 的例子:

希望有帮助:)

于 2012-11-15T06:51:51.767 回答