我正在使用select2插件来显示我的下拉数据。
我有问题,因为我的下拉列表select2有18000个数据。 如何显示部分显示的数据,而不是所有数据都被加载。我使用Medoo数据库框架。我该怎么做?
这是我的源代码。
TabularInLine
此代码用于jquery。
<div class="form-group">
<label for="nama_user"><?php _e('Nama User'); ?></label>
<select class="form-control select2 select2-hidden-accessible" id="nama_user" name="nama_user" style="width: 100%;" tabindex="-1" aria-hidden="true">
<option value="0"><?php _e('Nobody'); ?></option>
<?php foreach ($ldap as $ldap) { ?>
<option value='<?php echo $ldap['id']; ?>'><?php echo $ldap['nama_user']; ?></option>
<?php } ?>
</select>
</div>
此函数用于Medoo的调用数据
$(".select2").select2();
$(".select2tag").select2({
tags: true,
maximumSelectionLength: 1
});
$(".select2tags").select2({
tags: true
});