jQuery select2获取select标签的值?

前端之家收集整理的这篇文章主要介绍了jQuery select2获取select标签的值?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
你好朋友这是我的代码
<select id='first'>
  <option value='1'> First  </option>
  <option value='2'> Second </option>
  <option value='3'> Three  </option>
</select>

这是我的select2代码

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

以下是获取所选值的代码

$("#first").val(); // It returns 1,2,3. This is not return anything when I used select2 plugin.

//OR

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

这是返回一个文本,如第一,第二,三,我想得到1,3。
意味着我需要选择框的值,而不是文本。

解决方法

$("#first").val(); // this will give you value of selected element. i.e. 1,3.
原文链接:https://www.f2er.com/jquery/184672.html

猜你在找的jQuery相关文章