aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/caretposition/index.html
blob: 4a6ed07013a9e60b9b1ceade2e44d6595d0df2ee (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
---
title: CaretPosition
slug: Web/API/CaretPosition
tags:
  - API
  - CSSOM View
  - Experimental
  - Interface
  - Reference
translation_of: Web/API/CaretPosition
---
<p>{{SeeCompatTable}} {{ APIRef("CSSOM") }}</p>

<p><code>CaretPosition</code> インターフェイスは、テキスト挿入ポイントのインジケーターであるキャレット位置を表します。 {{domxref("document.caretPositionFromPoint")}} メソッドを使用して <code>CaretPosition</code> を取得できます。</p>

<h2 id="プロパティ">プロパティ</h2>

<p><em>このインターフェイスはプロパティを継承しません。</em></p>

<dl>
 <dt>{{domxref("CaretPosition.offsetNode")}} {{readonlyInline}}</dt>
 <dd>キャレットの位置で見つかったノードを含む {{domxref("Node")}} を返します。</dd>
 <dt>{{domxref("CaretPosition.offset")}} {{readonlyInline}}</dt>
 <dd>キャレット位置ノードの文字オフセットを表す <code>long</code> を返します。</dd>
</dl>

<h2 id="メソッド">メソッド</h2>

<dl>
 <dt>{{domxref("CaretPosition.getClientRect")}}</dt>
</dl>

<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('CSSOM View', '#caret-position', 'CaretPosition') }}</td>
   <td>{{ Spec2('CSSOM View') }}</td>
   <td></td>
  </tr>
 </tbody>
</table>

<h2 id="ブラウザー実装状況">ブラウザー実装状況</h2>

<div class="hidden">
<p>The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> and send us a pull request.</p>
</div>

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

<h2 id="関連項目">関連項目</h2>

<ul>
 <li>{{domxref("Document.caretPositionFromPoint()")}}</li>
 <li>{{domxref("Range")}}</li>
 <li>{{domxref("Node")}}</li>
</ul>