开发者

Writing Multidemisional Array jQuery

I wou开发者_如何学Gold like to ask on how to write Multidimensional Array in jQuery ?

its oky if its in basic syntax, im still new to jQuery.


Its Javascript, not JQuery that handles the arrays, so what you really want is a tutorial on multidimensional arrays in Javascript.

Here is a good one.

Basically you define one array, then reference it inside another array. For example:

var columns = new Array(3);
var rows = new Array(4);
rows[0] = columns;

This can then be accessed as follows:

rows[0][0]


there are no multidimensional arrays in javascript, but you can have an array whose elements are arrays

  square = [
      [1, 2, 3],
      [4, 5, 6],
      [7, 8, 9]
  ]

arrays don't have to be of the same length

  triangle = [
      [1, 2, 3],
      [4, 5],
      [6]
  ]

you can mix array and non-array elements

   wookie = [
        head,
    [hand, hand],
       belly,
     [foot, foot]
  ]
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜