aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/xpath/comparison_with_css_selectors
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
commit33058f2b292b3a581333bdfb21b8f671898c5060 (patch)
tree51c3e392513ec574331b2d3f85c394445ea803c6 /files/ja/web/xpath/comparison_with_css_selectors
parent8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff)
downloadtranslated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip
initial commit
Diffstat (limited to 'files/ja/web/xpath/comparison_with_css_selectors')
-rw-r--r--files/ja/web/xpath/comparison_with_css_selectors/index.html50
1 files changed, 50 insertions, 0 deletions
diff --git a/files/ja/web/xpath/comparison_with_css_selectors/index.html b/files/ja/web/xpath/comparison_with_css_selectors/index.html
new file mode 100644
index 0000000000..faaa5ce0b5
--- /dev/null
+++ b/files/ja/web/xpath/comparison_with_css_selectors/index.html
@@ -0,0 +1,50 @@
+---
+title: CSS セレクターと XPath の比較
+slug: Web/XPath/Comparison_with_CSS_selectors
+tags:
+ - CSS
+ - Draft
+ - NeedsContent
+ - Reference
+ - XPath
+ - セレクター
+translation_of: Web/XPath/Comparison_with_CSS_selectors
+---
+<p>{{XSLTRef}}{{Page("/ja/docs/Web/XPath", "Subnav")}}{{Draft}}</p>
+
+<p class="summary">この記事では、Web 開発者が適切な仕事に適切なツールをよりよく選択できるように、 CSS セレクタと XPath の違いを文書化して Web 開発者に提供しています。</p>
+
+<table class="standard-table">
+ <thead>
+ <tr>
+ <th scope="col"><a href="/ja/docs/Web/XPath">XPath 機能</a></th>
+ <th scope="col"><a href="/ja/docs/Web/CSS/CSS_Selectors">相当する CSS</a></th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td><a href="/en-US/docs/Web/XPath/Axes/ancestor"><code>ancestor</code></a>, <a href="/en-US/docs/Web/XPath/Axes/parent"><code>parent</code></a>, <a href="/en-US/docs/Web/XPath/Axes/preceding-sibling"><code>preceding-sibling</code></a> 軸</td>
+ <td>{{CSSxRef(":has",":has()")}} セレクター {{experimental_inline}}</td>
+ </tr>
+ <tr>
+ <td><a href="/ja/docs/Web/XPath/Axes/attribute"><code>attribute</code></a> 軸</td>
+ <td><a href="/ja/docs/Web/CSS/Attribute_selectors">属性セレクター</a></td>
+ </tr>
+ <tr>
+ <td><a href="/ja/docs/Web/XPath/Axes/child"><code>child</code></a> 軸</td>
+ <td><a href="/ja/docs/Web/CSS/Child_selectors">子結合子</a></td>
+ </tr>
+ <tr>
+ <td><a href="/ja/docs/Web/XPath/Axes/descendant"><code>descendant</code></a> 軸</td>
+ <td><a href="/ja/docs/Web/CSS/Descendant_selectors">子孫結合子</a></td>
+ </tr>
+ <tr>
+ <td><a href="/ja/docs/Web/XPath/Axes/following-sibling"><code>following-sibling</code></a> 軸</td>
+ <td><a href="/ja/docs/Web/CSS/General_sibling_selectors">一般兄弟結合子</a>または<a href="/ja/docs/Web/CSS/Adjacent_sibling_selectors">隣接兄弟結合子</a></td>
+ </tr>
+ <tr>
+ <td><a href="/ja/docs/Web/XPath/Axes/self"><code>self</code></a> 軸</td>
+ <td>{{CSSxRef(":scope")}} または {{CSSxRef(":host")}} セレクター</td>
+ </tr>
+ </tbody>
+</table>