1. ホーム
  2. jquery

[解決済み] bootstrapのselectpickerプラグインを使用して選択時に選択された値を設定する方法

2022-11-07 10:39:14

質問

私は ブートストラップ-セレクト プラグインをこのように使用します。

HTML :

<select name="selValue" class="selectpicker">
   <option value="1">Val 1</option>
   <option value="2">Val 2</option>
   <option value="3">Val 3</option>
   <option value="4">Val 4</option>
</select>

ジャバスクリプト :

$('select[name=selValue]').selectpicker();

あとは、ボタンがクリックされたときに、このselectに選択されている値を設定したい...こんな感じです。

$('#mybutton').click(function(){
   $('select[name=selValue]').val(1);
});

しかし、何も起こりません。

どうすれば実現できますか?

どのように解決するのですか?

値は正しく選択されていますが、プラグインが本当の選択項目を隠して順序なしリストのボタンを表示しているため、選択項目で選択された値をユーザーに見せたい場合は、以下のようにします。

//Get the text using the value of select
var text = $("select[name=selValue] option[value='1']").text();
//We need to show the text inside the span that the plugin show
$('.bootstrap-select .filter-option').text(text);
//Check the selected attribute for the real select
$('select[name=selValue]').val(1);

編集する

@blushrtが指摘するように、より良い解決策は。

$('select[name=selValue]').val(1);
$('.selectpicker').selectpicker('refresh')

2を編集します。

複数の値を選択する場合は、値を配列で渡します。