编辑下面的代码:【加编码】
<div><h3> 用户列表</h3> <table class="table table-striped"> <thead><tr> <th>编辑</th> <th>名</th> <th>姓</th> </tr></thead> <tbody><tr ng-repeat="user in users"> <td> <button class="btn" ng-click="editUser(user.id)"> <span class="glyphicon glyphicon-pencil"></span>  编辑 </button> </td> <td>{{ user.fName }}</td> <td>{{ user.lName }}</td> </tr></tbody> </table> </div>
结果: 【此窗口】 帮助?
Try it Yourself - © 自强学堂