使用AngularJS为表数据添加过滤器选项

时间:2015-09-18 13:05:50

标签: javascript angularjs html5

我创建了一个包含静态数据的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> 

0 个答案:

没有答案