From 9bf432696e556ea4685edc38a6fca4a0421bbd64 Mon Sep 17 00:00:00 2001 From: Anil Seervi Date: Mon, 27 Dec 2021 21:23:34 +0530 Subject: Sync Web/API/Document/querySelector, zh-CN (#3442) * Fix return type for document.querySelector() in zh-CN * Fix flaws - http -> https - fix url - remove 404 url --- files/zh-cn/web/api/document/queryselector/index.html | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) (limited to 'files/zh-cn') diff --git a/files/zh-cn/web/api/document/queryselector/index.html b/files/zh-cn/web/api/document/queryselector/index.html index 9e77f22412..8a449768ec 100644 --- a/files/zh-cn/web/api/document/queryselector/index.html +++ b/files/zh-cn/web/api/document/queryselector/index.html @@ -11,7 +11,7 @@ translation_of: Web/API/Document/querySelector ---
{{ ApiRef("DOM") }}
-

文档对象模型{{domxref("Document")}}引用的querySelector()方法返回文档中与指定选择器或选择器组匹配的第一个 {{domxref("HTMLElement")}}对象。 如果找不到匹配项,则返回null

+

文档对象模型{{domxref("Document")}}引用的querySelector()方法返回文档中与指定选择器或选择器组匹配的第一个 {{domxref("Element")}}对象。 如果找不到匹配项,则返回null

提示: 匹配是使用深度优先先序遍历,从文档标记中的第一个元素开始,并按子节点的顺序依次遍历。

@@ -34,7 +34,7 @@ translation_of: Web/API/Document/querySelector

返回值

-

表示文档中与指定的一组CSS选择器匹配的第一个元素,一个 {{domxref("HTMLElement")}}对象。如果没有匹配到,则返回null。

+

表示文档中与指定的一组CSS选择器匹配的第一个元素,一个 {{domxref("Element")}}对象。如果没有匹配到,则返回null。

如果您需要与指定选择器匹配的所有元素的列表,则应该使用{{domxref("Document.querySelectorAll", "querySelectorAll()")}} 。

@@ -49,7 +49,7 @@ translation_of: Web/API/Document/querySelector

如果选择器是一个 ID,并且这个 ID 在文档中错误地使用了多次,那么返回第一个匹配该 ID 的元素。

-

CSS 伪类不会返回任何元素,见 Selectors API 中的相关规定。

+

CSS 伪类不会返回任何元素,见 Selectors API 中的相关规定。

转义特殊字符

@@ -111,16 +111,13 @@ translation_of: Web/API/Document/querySelector

浏览器兼容性

- -

{{Compat("api.Document.querySelector")}}

相关链接

-- cgit v1.2.3-54-g00ecf