我正在使用 nginfinityscroll 并且它没有触发滚动事件......我的代码:
<div class="listView" id="foundingScroll">
<label style="margin-top:10px">search:</label>
<input ng-model="foundingFilter"/>
<div infinite-scroll="scrollSearch()" infinite-scroll-container="#foundingScroll">
<div ng-repeat="founding in foundings| myFilter:foundingFilter"><input type="checkbox" value="founding.id" ng-model="foundingsSearch[founding.name]" /><label>{{founding.name}}</label></div></div></div>
有任何想法吗?