1. ホーム
  2. jquery

[解決済み] jQuery select2 selectタグの値を取得する?

2022-11-25 12:40:24

質問

こんにちは、これは私のコードです。

<select id='first'>
  <option value='1'> First  </option>
  <option value='2'> Second </option>
  <option value='3'> Three  </option>
</select>

これは私のselect2のコードです。

$("#first").select2();

以下は、選択された値を取得するためのコードです。

$("#first").select2('val'); // It returns first,second,three.

のようなテキストを返します。 first,second,three というテキストを返しますが、私は 1,2,3 .

私はテキストではなく、セレクトボックスの値が必要であることを意味します。

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

$("#first").val(); // this will give you value of selected element. i.e. 1,2,3.