我正在尝试制作一个演示,其中当用户在文本字段中输入时会显示列表。当用户在文本字段中键入时,它显示为自动完成它显示过滤器列表。但我的问题是我的列表不滚动我已经使用 overflow:auto;或溢出:滚动。但没有什么对我有用。你能不能告诉我如何滚动列表?
http://codepen.io/anon/pen/ZGEpMN
.listcontainer{
overflow: auto;
border :1px solid blue;
height:150px;
}
<div class="listcontainer" ng-show="station.stationCode">
<li class="item" ng-repeat="station in data.data | filter:station.stationCode:startsWith">{{station.stationName+"-("+station.stationCode+")"}}</li>
</div>