我创建了一个包含静态数据的html表,现在我想使用angularjs为表数据添加过滤器选项。
我试过了:
<input type="search" placeholder="Filter" ng-model="searchtext"/> <br/><br/>
<table class="table table-hover">
<thead>
<th>Name</th>
<th>Version</th>
<th>Type</th>
</thead>
<tbody id="Table" class="tbody">
<tr ng-repeat="filter:searchtext | orderBy: 'name'">
<td>link</td>
<td>4</td>
<td>L1 Type</td>
</tr>
</tbody>
</table>