我将pqSelect用于选择字段。我想更改选择字段中的选项。当我更改选项并通过调用pqSelect的refreshData方法刷新选项列表时。它刷新选项,但也增加了字段的宽度。我该如何纠正?
$('#education').pqSelect("refreshData");
调用refreshData之前
调用refreshData之后
<select id="education" name="education[]" style="width: 100%" required="" multiple="multiple">
</select>
最佳答案
如果可能,以像素为单位指定宽度,并使用max-width
。尝试style="width:200px; max-width: 200px;"
关于javascript - 调用方法refreshData时,pqSelect的宽度正在增加,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/31690819/