0

当使用代码调整 jquery 选择的高度时

.chosen-results {
    height: 82px;
}

它不能正确计算高度,当您使用键盘选择其中的选项时,不会显示选项。我该如何解决?

jsfiddle:http: //jsfiddle.net/umcc9/6/

脚步:

1) Click on select box
2) Click Down key multiple times
3) When Val-4 will be highlight, it will not be visible in container
4

1 回答 1

0

好的找到我需要设置最大高度的解决方案

.chosen-results {
    max-height: 82px;
}
于 2013-10-08T07:25:54.090 回答