添加数据实时搜索时出现 HTML 选择选项样式错误 = "true"



我使用adminBSB模板作为门户,但所有的选择框都是这样的

它只出现在Windows操作系统上,但在Linux操作系统中运行良好。

这是因为数据实时搜索="true"。

请给我一个解决方案

<select class = "form-control show-tick" onchange = "showQuantityPerUnit(); typeForward(this.value);" data-live-search = "true" name = "type" id = "type" required>
<option value="">SELECT TYPE</option>
<?php $MedicineType = $DataControl -> Read("type", "");
foreach ($MedicineType as $TypeKey) { ?>
<option value="<?php echo $TypeKey['type']; ?>"><?php echo $TypeKey['type']; ?></option>
<? } ?>
</select>

我也遇到了这个问题,我认为这是关于web浏览器兼容性的问题,而不是操作系统的问题。它在mozillafirefox和旧版本的googlechrome中运行良好。我知道这个问题已经一个月了。但对于那些仍然不知道解决这个问题的方法的人来说。这样做。

你可以通过更新你的style.css.来修复它

.bootstrap-select .bs-searchbox .form-control,
.bootstrap-select .bs-actionsbox .form-control,
.bootstrap-select .bs-donebutton .form-control {margin-left : 30px}

.bootstrap-select .bs-searchbox .form-control,
.bootstrap-select .bs-actionsbox .form-control,
.bootstrap-select .bs-donebutton .form-control {padding-left : 30px}

希望能有所帮助。

相关内容

  • 没有找到相关文章

最新更新