このコードでは、テキストボックスで検索しているレコード名を入力すると、入力時にレコードを検索して、入力ボタンをクリックしてレコード名を検索する必要があります。Angularjsに入力ボタンを押した後、テキストボックス内のレコードを検索する方法は?
<input type="text" class="form-control" name="search" placeholder="Enter keyword to search" ng-model="Google" style="background-color:#5b2c2c;color:white;">
<table class="table" border="1" style="margin:0;margin-left:90px;background-color:white;width:80%;border:5px solid green">
<thead>
<tr>
<th><a>Google</a></th>
<th><a>Facebook</a></th>
<th><a>Twitter</a></th>
<th><a>Yahoo</a></th>
</tr>
</thead>
<tbody>
<tr ng-repeat="record in collection | filter:Google" ng-class-even="'stripped'">
<td>{{record.Google}}</td>
<td>{{record.Facebook}}</td>
<td>{{record.Twitter}}</td>
<td>{{record.Yahoo}}</td>
</tr>
</tbody>
</table>
<script>
var app = angular.module('myapp', []);
app.controller('myctrl', function($scope) {
$scope.collection = [{
Google: 'Dhoni',
Facebook: 'Simla',
Twitter: '5000'
},
{
Google: 'Kohli',
Facebook: 'Manali',
Twitter: '15000'
},
{
Google: 'Virat',
Facebook: 'Rajasthan',
Twitter: '35000'
},
{
Google: 'Yuvraj',
Facebook: 'Kerala',
Twitter: '35000'
},
{
Google: 'Singh',
Facebook: 'Mysore',
Twitter: '35000'
},
{
Google: 'Murali',
Facebook: 'OOTY',
Twitter: '20000'
},
{
Google: 'Vijay',
Facebook: 'Goa',
Twitter: '20000'
}
];
});
</script>