Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

element.length

概要

lengthNodeList内のitemの数を返します。

構文

numItems =nodeList.length
  • numItemsNodeList内のitem数に相当する 整数値(integer)です。

// all the paragraphs in the document 
var items = document.getElementsByTagName("p"); 
// for each item in the list,
// append the entire element as a string of HTML
var gross = "";
for (var i = 0; i < items.length; i++) {
  gross += items[i].innerHTML;
}
// gross is now all the HTML for the paragraphs

注意

Despite the location of this page in the reference, length is not a property of Element, but rather of a NodeList. NodeList objects are returned from a number of DOM methods, such as document.getElementsByTagName.

length is a very common property in DOM programming. It's very common to test the length of a list (to see if it exists at all) and to use it as the iterator in a for loop, as in the example above.

仕様

length

ドキュメントのタグと貢献者

タグ: 
 このページの貢献者: fscholz, khalid32, Okome
 最終更新者: khalid32,