aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/api/attr/localname/index.html
blob: 352e0aa02faacf2bf0eb431f6822f5713ba6314c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
---
title: Attr.localName
slug: Web/API/Attr/localName
translation_of: Web/API/Attr/localName
---
<div>{{APIRef("DOM")}}</div>

<p><code><strong>Attr.localName</strong></code> 为只读属性,返回一个属性限定名称的本名部分(去除命名空间前缀的名字)。</p>

<div class="note">
<p>在之前的DOM规范中此API被定义在 {{domxref("Node")}} 接口中。</p>
</div>

<h2 id="语法">语法</h2>

<pre class="syntaxbox notranslate"><var>name</var> = <var>attribute</var>.localName
</pre>

<h3 id="返回值">返回值</h3>

<p>属性的限定名称的本名 {{domxref("DOMString")}}</p>

<h2 id="示例">示例</h2>

<p>下面的例子将弹出一个有“id”文字的警告窗口。</p>

<h3 id="HTML_代码">HTML 代码</h3>

<pre class="brush: html notranslate">&lt;button id="example"&gt;Click me&lt;/button&gt;</pre>

<h3 id="JavaScript_代码">JavaScript 代码</h3>

<pre class="brush: js notranslate">const element = document.querySelector("#example");
element.addEventListener("click", function() {
  const attribute = element.attributes[0];
  alert(attribute.localName);
});
</pre>

<p>{{ EmbedLiveSample('Example','100%',30) }}</p>

<h2 id="注意">注意</h2>

<p>本文档中属性的“本名(local name)”指的是属性“限定名称(qualified names)”的命名空间冒号之后的部分。“限定名称”通常作为XML文档命名空间的一部分用在XML代码内。 </p>

<div class="note">
<p><strong>注意:在</strong>{{Gecko("1.9.2")}} 以及跟早的版本中,HTML DOM 访问该属性将返回 HTML 节点属性的大写字符串本名(有别于 XML DOM 的 XHTML 属性)。在后来的版本中,为遵循HTML5 标准,该属性返回 DOM 内部存储的名称,即,不论 HTML DOM 的 HTML 属性还是 XML DOM 的 XHTML属性都是小写字符串。</p>
</div>

<h2 id="规范">规范</h2>

<table class="standard-table">
 <thead>
  <tr>
   <th scope="col">规范</th>
   <th scope="col">状态</th>
   <th scope="col">备注</th>
  </tr>
 </thead>
 <tbody>
  <tr>
   <td>{{SpecName('DOM WHATWG', '#dom-attr-localname', 'Attr.localName')}}</td>
   <td>{{Spec2('DOM WHATWG')}}</td>
   <td>Initial definition</td>
  </tr>
 </tbody>
</table>

<h2 id="浏览器兼容性">浏览器兼容性</h2>



<p>{{Compat("api.Attr.localName")}}</p>

<h2 id="参考">参考</h2>

<ul>
 <li>{{domxref("Attr.namespaceURI")}}</li>
 <li>{{domxref("Attr.prefix")}}</li>
 <li>{{domxref("Element.localName")}}</li>
 <li>{{domxref("Node.localName")}}</li>
</ul>