aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/api/element/getattribute
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2021-08-02 10:31:29 -0400
committerIrvin <irvinfly@gmail.com>2021-08-04 01:30:29 +0800
commitd4b97cd8ba7c9b71d5e3ccb119103047da3b44a8 (patch)
treef8ea6bd0389fecc2c53d179b28dbd848a1dc421f /files/zh-cn/web/api/element/getattribute
parent9ea776df4726b50ce1b83e7ef8da6b20aeeece73 (diff)
downloadtranslated-content-d4b97cd8ba7c9b71d5e3ccb119103047da3b44a8.tar.gz
translated-content-d4b97cd8ba7c9b71d5e3ccb119103047da3b44a8.tar.bz2
translated-content-d4b97cd8ba7c9b71d5e3ccb119103047da3b44a8.zip
remove link 'title' attributes that's just the 'href' (zh-cn, part 6)
Diffstat (limited to 'files/zh-cn/web/api/element/getattribute')
-rw-r--r--files/zh-cn/web/api/element/getattribute/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/files/zh-cn/web/api/element/getattribute/index.html b/files/zh-cn/web/api/element/getattribute/index.html
index 2310d18095..ed9673bde5 100644
--- a/files/zh-cn/web/api/element/getattribute/index.html
+++ b/files/zh-cn/web/api/element/getattribute/index.html
@@ -35,7 +35,7 @@ alert(align);
<p>当在被标记为 HTML 文档中的一个 HTML 元素上调用此方法时,<code>getAttribute()</code> 会先将其参数转换为小写形式。</p>
-<p>当指定的属性不存在于元素上时,所有浏览器(Firefox、Internet Explorer、Opera 最新版本、Safari、Konqueror 以及 iCab 等等)都返回 <code>null</code>,这也是<a href="http://dom.spec.whatwg.org/#dom-element-getattribute" title="http://dom.spec.whatwg.org/#dom-element-getattribute">当前 DOM 规范草案</a>规定的。然而,旧的DOM 3 Core specification 认为此时正确的返回值应该是一个空字符串,一些 DOM 实现环境实现了该行为(behavior)。在 XUL (Gecko) 中,getAttribute 的实现遵从 DOM 3 Core specification,返回一个空字符串。因此,如果一个属性可能不存在于指定的元素上,在调用 <code>getAttribute()</code> 之前,你应该使用 {{domxref("element.hasAttribute()")}} 来检测该属性是否存在。</p>
+<p>当指定的属性不存在于元素上时,所有浏览器(Firefox、Internet Explorer、Opera 最新版本、Safari、Konqueror 以及 iCab 等等)都返回 <code>null</code>,这也是<a href="http://dom.spec.whatwg.org/#dom-element-getattribute">当前 DOM 规范草案</a>规定的。然而,旧的DOM 3 Core specification 认为此时正确的返回值应该是一个空字符串,一些 DOM 实现环境实现了该行为(behavior)。在 XUL (Gecko) 中,getAttribute 的实现遵从 DOM 3 Core specification,返回一个空字符串。因此,如果一个属性可能不存在于指定的元素上,在调用 <code>getAttribute()</code> 之前,你应该使用 {{domxref("element.hasAttribute()")}} 来检测该属性是否存在。</p>
<h2 id="浏览器兼容性">浏览器兼容性</h2>