我们可以像select一样自动制作角度预先定位吗? 如果元素位于屏幕底部,则应填充结果。 请举例说明。
答案 0 :(得分:0)
检查html如何展示使用ng-model的双向绑定是如何工作的。
codepen的链接说明了示例:https://codepen.io/deep060494/pen/ezBqay
<input name="states" id="states" type="text" placeholder="enter a state" ng-model="selected" typeahead="state for state in states | filter:$viewValue | limitTo:8" class="form-control">
</div>
<button class="btn btn-success" type="submit">Submit</button>
<div><span>{{selected}}</span></div>