Select2 是一个 jQuery 插件,提供可自定义的选择框小部件。在本文中,我们将探讨如何在 Select2 中设置预选值。
<code class="html"><input type="hidden" name="programid" id="programid" class="width-500"></code>
<code class="html"><select id="mySelect2" name="mySelect2[]"> <option value="TheID" selected="selected">The text</option> </select></code>
<code class="javascript">var $newOption = $("<option selected='selected'></option>").val("TheID").text("The text"); $("#mySelect2").append($newOption).trigger('change');</code>
<code class="javascript">$("#mySelect2").val(5).trigger('change');</code>
以上是如何在 Select2 中预先选择值:版本 4 及以下版本的指南?的详细内容。更多信息请关注PHP中文网其他相关文章!