--- title: Node.hasAttributes slug: Web/API/Element/hasAttributes translation_of: Web/API/Element/hasAttributes ---
{{ApiRef}}
{{ obsolete_header(22) }}

概述

hasAttributes属性返回一个布尔值truefalse,来表明当前元素节点是否有至少一个的属性(attribute).

语法

result = targetNode.hasAttributes();

示例

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

if ( t1.hasAttributes() ) {
  // 可以用t1.attributes来读取该元素的所有属性
}

规范