javascript テキストボックスをフォーカス時に全選択状態にする
- 作成日 2020.11.10
- 更新日 2022.07.19
- javascript
- javascript
javascriptで、selectを使って、テキストボックスをフォーカス時に全選択状態にするサンプルコードを記述してます。
環境
- OS windows10 pro 64bit
- Apache 2.4.43
- ブラウザ chrome 103.0.5060.114
全選択状態やり方
「onfocus」を利用して「this」で自分自身を選択状態にします。
<input value="mebeetext" onfocus="this.select();">
実行結果
関数を使用しても、結果は同じになります。
<input value="mebeetext" id="hoge">
<script>
document.getElementById("hoge").onfocus = function(){
this.select();
}
</script>
「addEventListener」を使用しても同じです。
<input value="mebeetext" id="hoge">
<script>
document.getElementById("hoge").addEventListener('focus', function(){
this.select();
})
</script>
ただし、アロー関数で記述した場合は「this」の参照先が異なるので、注意が必要です。
document.getElementById("hoge").addEventListener('focus', () => {
this.select(); // Uncaught TypeError: this.select is not a function
})
サンプルコード
以下は、
テキストボックスにフォーカスが当たれば、入力されているテキストを全選択する
サンプルコードとなります。
※cssには「bootstrap material」を使用してます。
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8">
<title>mebeeサンプル</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700|Material+Icons">
<link rel="stylesheet"
href="https://unpkg.com/bootstrap-material-design@4.1.1/dist/css/bootstrap-material-design.min.css"
integrity="sha384-wXznGJNEXNG1NFsbm0ugrLFMQPWswR3lds2VeinahP8N0zJw9VWSopbjv2x7WCvX" crossorigin="anonymous">
</head>
<style>
.main {
margin: 0 auto;
margin-top: 200px;
display: flex;
flex-direction: column;
align-items: center;
font-size: 25px;
width: 500px;
}
</style>
<body>
<div class="main">
<h2><span class="badge badge-primary">全選択</span></h2>
<form>
<div class="form-group">
<label for="exampleInputEmail1">テキストボックス</label>
<input value="foofoofoo" onfocus="this.select();" type="text" class="form-control" id="sample">
</div>
</form>
</div>
</body>
</html>
全選択されていることが確認できます。
-
前の記事
python + 1 と-1を演算子を使って計算する 2020.11.10
-
次の記事
Vagrantを使ってSolusを構築する 2020.11.10
コメントを書く