Heim  >  Fragen und Antworten  >  Hauptteil

Ist ein JQ-Objekt ein Array oder ein Objekt?

Oft wird gesagt, dass das jq-Objekt ein Array ist, aber beim Testen mit Object.prototype.toString.call() stellt sich heraus, dass es [Object Object] statt [Object Array] ist, aber das jq-Objekt, das wir sehen auf der Konsole sieht es aus wie ein Array, 0, 1 ... Ist das jq-Objekt also ein Objekt oder ein Array?

给我你的怀抱给我你的怀抱2708 Tage vor1042

Antworte allen(3)Ich werde antworten

  • 代言

    代言2017-06-12 09:30:41

    他是一个对象,只不过长的像数组,我们通常管这种结构叫「类数组」

    这种对象的 key 为 [0, 1, 2, ...] 的值,并且有一个 length 的属性,也就是长下面的样子

    selections = {
      0: dom1,
      1: dom2,
      length: 2
    }

    Antwort
    0
  • 某草草

    某草草2017-06-12 09:30:41

    jQuery对象,顾名思义就是对象。只不过它确实有数组的某些特征,比如可以使用下标,有length长度属性等等,但它也有数组没有的属性的方法。这种对象可以称之为类数组对象

    Antwort
    0
  • 曾经蜡笔没有小新

    曾经蜡笔没有小新2017-06-12 09:30:41

    jQuery对象就是对象

    Antwort
    0
  • StornierenAntwort