diff options
Diffstat (limited to 'files/ja/web/api/htmlinputelement/select/index.html')
-rw-r--r-- | files/ja/web/api/htmlinputelement/select/index.html | 85 |
1 files changed, 85 insertions, 0 deletions
diff --git a/files/ja/web/api/htmlinputelement/select/index.html b/files/ja/web/api/htmlinputelement/select/index.html new file mode 100644 index 0000000000..5fb740e691 --- /dev/null +++ b/files/ja/web/api/htmlinputelement/select/index.html @@ -0,0 +1,85 @@ +--- +title: HTMLInputElement.select() +slug: Web/API/HTMLInputElement/select +tags: + - API + - HTML DOM + - HTMLInputElement + - Method + - Reference +translation_of: Web/API/HTMLInputElement/select +--- +<div>{{ APIRef("HTML DOM") }}</div> + +<p><strong><code>HTMLInputElement.select()</code></strong> メソッドは、{{HTMLElement("textarea")}} 要素またはテキストフィールドを含む {{HTMLElement("input")}} 要素内のすべてのテキストを選択します。</p> + +<h2 id="シンタックス">シンタックス</h2> + +<pre class="syntaxbox notranslate"><em>element</em>.select();</pre> + +<h2 id="例">例</h2> + +<p>この例のボタンをクリックすると、<code><input></code> 要素内のすべてのテキストが選択されます。</p> + +<h3 id="HTML">HTML</h3> + +<pre class="brush: html notranslate"><input type="text" id="text-box" size="20" value="Hello world!"> +<button onclick="selectText()">Select text</button> +</pre> + +<h3 id="JavaScript">JavaScript</h3> + +<pre class="brush: js notranslate">function selectText() { + const input = document.getElementById('text-box'); + input.focus(); + input.select(); +}</pre> + +<h3 id="結果">結果</h3> + +<p>{{EmbedLiveSample("Example")}}</p> + +<h2 id="メモ">メモ</h2> + +<p><code>element.select()</code> を呼んだからといって必ずしも入力がフォーカスされるわけではないので、{{domxref("HTMLElement.focus()")}} で使うことが多いです。</p> + +<p>これがサポートされていないブラウザでは、パラメータ 0 と入力値の長さを指定して <a href="/ja/docs/Web/API/HTMLInputElement/setSelectionRange">HTMLInputElement.setSelectionRange()</a> を呼び出すことで置き換えることができます。</p> + +<pre class="brush: html notranslate"><input onClick="this.select();" value="Sample Text" /> +<!-- equivalent to --> +<input onClick="this.setSelectionRange(0, this.value.length);" value="Sample Text" /> +</pre> + +<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('HTML WHATWG', 'forms.html#dom-textarea/input-select', 'select')}}</td> + <td>{{Spec2('HTML WHATWG')}}</td> + <td></td> + </tr> + </tbody> +</table> + +<h2 id="ブラウザの互換性">ブラウザの互換性</h2> + +<div class="hidden">このページの互換性一覧表は、構造化データから生成されています。データに貢献したい方は、https://github.com/mdn/browser-compat-data をチェックしてプルリクエストを送ってください。</div> + +<p>{{Compat("api.HTMLInputElement.select")}}</p> + +<h2 id="あわせて参照">あわせて参照</h2> + +<ul> + <li>{{ HTMLElement("input") }}</li> + <li>{{ HTMLElement("textarea") }}</li> + <li>{{ domxref("HTMLInputElement") }}</li> + <li>{{ domxref("HTMLInputElement.setSelectionRange") }}</li> +</ul> |