我使用的角度引導預輸入(此LIB UI的自舉tpls.js )在我的應用程序,當兩個預輸入在一個範圍內使用,只有一個做工精良,和其他沒有工作, 這是我的代碼角度引導預輸入錯誤
angular.module('plunker', ['ui.bootstrap']);
function TypeaheadCtrl($scope) {
$scope.selected = undefined;
$scope.selected2 = undefined;
$scope.states = ['Alabama', 'Alaska','California', 'Hawaii', 'Wisconsin', 'Wyoming'];
}
<html ng-app="plunker">
<head>
<title></title>
<link href="lib/angular-bootstrap/bootstrap.css" rel="stylesheet" />
<script src="lib/angular/angular.js"></script>
<script src="lib/angular-bootstrap/ui-bootstrap-tpls-0.3.0.min.js"></script>
<script src="app.js"></script>
</head>
<body>
<div class='container-fluid' ng-controller="TypeaheadCtrl">
<pre>Model: {{selected| json}}</pre>
<input type="text" ng-model="selected" typeahead="state for state in states | filter:$viewValue">
<input type="text" ng-model="selected2" typeahead="state for state in states | filter:$viewValue">
</div>
</body>
請檢查並幫助。
你能爲此提供一個plunkr嗎? – callmekatootie
是的,這個鏈接http://plnkr.co/edit/B0aNgjcFM7G0rBA9a5c9?p=preview –