Bootstrap 学习笔记(一)

来源:互联网 发布:淘宝商城平台 编辑:程序博客网 时间:2024/06/05 20:21

基于angular框架

数值以财务数字形式显示 34,567.09

<div class="row">  <table>    <thead>      <tr>        <th>数值</th>      </tr>    </thead>    <tbody>      <tr>        <td>{{item.csum|number:'1.0-2'}}</td>      </tr>    </tbody>  </table></div>