diff options
author | Anil Seervi <eurus2000@protonmail.ch> | 2021-12-27 21:23:34 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-27 23:53:34 +0800 |
commit | 9bf432696e556ea4685edc38a6fca4a0421bbd64 (patch) | |
tree | f11306fb7a8cfcc7b8eac8abb1846b1cb7029b61 /files/zh-cn | |
parent | 2c5efd310db3c6651ab86047f46fd02a491f04d2 (diff) | |
download | translated-content-9bf432696e556ea4685edc38a6fca4a0421bbd64.tar.gz translated-content-9bf432696e556ea4685edc38a6fca4a0421bbd64.tar.bz2 translated-content-9bf432696e556ea4685edc38a6fca4a0421bbd64.zip |
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
Diffstat (limited to 'files/zh-cn')
-rw-r--r-- | files/zh-cn/web/api/document/queryselector/index.html | 11 |
1 files changed, 4 insertions, 7 deletions
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 --- <div>{{ ApiRef("DOM") }}</div> -<p>文档对象模型{{domxref("Document")}}引用的<code><strong>querySelector()</strong></code>方法返回文档中与指定选择器或选择器组匹配的第一个 {{domxref("HTMLElement")}}对象。 如果找不到匹配项,则返回<code>null</code>。</p> +<p>文档对象模型{{domxref("Document")}}引用的<code><strong>querySelector()</strong></code>方法返回文档中与指定选择器或选择器组匹配的第一个 {{domxref("Element")}}对象。 如果找不到匹配项,则返回<code>null</code>。</p> <div class="note"> <p><strong>提示</strong>: 匹配是使用深度优先先序遍历,从文档标记中的第一个元素开始,并按子节点的顺序依次遍历。</p> @@ -34,7 +34,7 @@ translation_of: Web/API/Document/querySelector <h3 id="返回值">返回值</h3> -<p>表示文档中与指定的一组CSS选择器匹配的第一个元素,一个 {{domxref("HTMLElement")}}对象。如果没有匹配到,则返回null。</p> +<p>表示文档中与指定的一组CSS选择器匹配的第一个元素,一个 {{domxref("Element")}}对象。如果没有匹配到,则返回null。</p> <p>如果您需要与指定选择器匹配的所有元素的列表,则应该使用{{domxref("Document.querySelectorAll", "querySelectorAll()")}} 。</p> @@ -49,7 +49,7 @@ translation_of: Web/API/Document/querySelector <p>如果选择器是一个 ID,并且这个 ID 在文档中错误地使用了多次,那么返回第一个匹配该 ID 的元素。</p> -<p>CSS 伪类不会返回任何元素,见 <a href="http://www.w3.org/TR/selectors-api/#grammar">Selectors API</a> 中的相关规定。</p> +<p>CSS 伪类不会返回任何元素,见 <a href="https://www.w3.org/TR/selectors-api/#grammar">Selectors API</a> 中的相关规定。</p> <h3 id="转义特殊字符">转义特殊字符</h3> @@ -111,16 +111,13 @@ translation_of: Web/API/Document/querySelector <h2 id="Browser_Compatibility" name="Browser_Compatibility">浏览器兼容性</h2> - - <p>{{Compat("api.Document.querySelector")}}</p> <h2 id="See_also" name="See_also">相关链接</h2> <ul> - <li><a href="/zh-CN/docs/Web/API/Document_object_model/Locating_DOM_elements_using_selectors">Locating DOM elements using selectors</a></li> + <li><a href="/zh-CN/docs/Web/API/Document_Object_Model/Locating_DOM_elements_using_selectors">Locating DOM elements using selectors</a></li> <li>{{domxref("Element.querySelector()")}}</li> <li>{{domxref("Document.querySelectorAll()")}}</li> <li>{{domxref("Element.querySelectorAll()")}}</li> - <li><a href="https://developer.mozilla.org/en-US/docs/Code_snippets/QuerySelector">Code snippets for querySelecto</a>r</li> </ul> |