实例代码“Ctrl+/”提示“F11/ESC”全屏 返回 格式化 恢复 运行
x
 
1
<h3>用户</h3>
2
3
<table class="table table-striped">
4
  <thead><tr>
5
    <th>编辑</th>
6
    <th></th>
7
    <th></th>
8
  </tr></thead>
9
  <tbody><tr ng-repeat="user in users">
10
    <td>
11
      <button class="btn" ng-click="editUser(user.id)">
12
        <span class="glyphicon glyphicon-pencil"></span>&nbsp;&nbsp;Edit
13
      </button>
14
    </td>
15
    <td>{{ user.fName }}</td>
16
    <td>{{ user.lName }}</td>
17
  </tr></tbody>
18
</table>
19