你好,朋友们,这是我的代码:
<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
。
意味着我需要选择框的值,而不是文本。