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.

Node.hasAttributes

 
概要

hasAttributes は現在の要素が何らかの属性を持つか否かを示す真偽値を返します。

構文

result = targetNode.hasAttributes(attrString);
  • result : 真偽値 (true / false)

var t1 = document.getElementById("table-data"); 

if ( t1.hasAttributes() ) { 
  // t1 が属性を持つ場合の処理をここに記述
}

仕様

関連情報

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

タグ: 
 このページの貢献者: fscholz, arunpandianp, teoli, ethertank, Marsf
 最終更新者: arunpandianp,