テキストエリアのテキストを選択

テキストエリアのテキストを選択するJavaScriptサンプル。

サンプル(実装例)

テキストエリア:

実装例の動作について

「選択」ボタンをクリックすると、「テキストエリア:」の右横のテキストエリアのテキストを選択する。

ソースコード

JavaScript

<script type="text/javascript">
function sampleSelect() {
    document.getElementById( "sampleInput" ).select();
}
</script>

HTML

<div id="sample">
    テキストエリア:<textarea id="sampleInput">サンプル</textarea>
    <button onclick="sampleSelect();">選択</button>
</div>

CSS

<style>
#sampleInput {
   vertical-align: text-top;
}
</style>

解説

JavaScript

<script type="text/javascript">
function sampleSelect() {

    // id属性値が「sampleInput」のテキストエリアのテキストを選択する。
    document.getElementById( "sampleInput" ).select();

}
</script>

スポンサード リンク

カテゴリー: JavaScript, フォーム, 逆引き パーマリンク