你好朋友这是我的代码:
<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.