javascript セレクトボックスの任意の位置を指定する
- 作成日 2020.09.27
- 更新日 2022.06.30
- javascript
- javascript
javascriptで、selectedIndexを使って、セレクトボックスの任意の位置を指定するサンプルコードを記述してます。
環境
- OS windows10 pro 64bit
- Apache 2.4.43
- ブラウザ chrome 102.0.5005.115
selectedIndex使い方
selectedIndexを使うと、インデックス番号により任意の値を選択することが可能です。
要素.selectedIndex = インデックス番号;
実際に、使用してセレクトボックスの位置を指定してみます。
<select id="select">
<option selected>選択して下さい</option>
<option value="a">One</option>
<option value="b">Two</option>
<option value="c">Three</option>
</select>
<script>
let obj = document.getElementById('select');
obj.selectedIndex = 2; // 0を選択すると「選択して下さい」になり、1の場合は「One」となります。
</script>
実行結果をみると「2」を指定しているので「Two」が表示されていることが確認できます。
また、javascript部はdocument.getElementByIdを省略して記述することも可能です。
// 省略 let obj = document.getElementById('select');
select.selectedIndex = 2;
また、存在しない番号やマイナスを指定すると何も選択されません。
select.selectedIndex = 4;
実行結果
サンプルコード
以下は、
ランダムに生成した数値「1~3」をインデックス番号としてセレクトボックスの値を変更する
サンプルコードとなります。
※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>
<script>
function hoge() {
// 1~3のランダムな整数を生成
let idx = Math.floor(Math.random() * 3) + 1;
// インデックス番号としてセレクトボックスの値を変更する
let obj = document.getElementById('select');
obj.selectedIndex = idx;
}
</script>
<body>
<div class="main">
<form>
<div class="form-row align-items-center">
<div class="col-auto my-1">
<select id="select" class="custom-select mr-sm-2">
<option selected>選択して下さい</option>
<option value="a">One</option>
<option value="b">Two</option>
<option value="c">Three</option>
</select>
</div>
</div>
</form>
<button onclick="hoge();" type="button" class="btn btn-outline-warning">変更</button>
</div>
</body>
</html>
セレクトボックスの値が変更されていることが確認できます。
-
前の記事
React.js ライブラリ「react-flexy-table」を使ってtableを作成する 2020.09.27
-
次の記事
javascript for ofを使って配列をフロントに表示する 2020.09.27
コメントを書く