
AngularJs
Chris-Green
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
AngularJs格式化时间(在jsp中)
<td>{{createTime | date:'yyyy-MM-dd HH:mm:ss'}}</td>createTime为后端传来的时间毫秒数;原创 2018-03-16 15:33:33 · 536 阅读 · 0 评论 -
angularjs周期性定时器
var app = angular.module("app"); app.controller("appController", function ($scope, $http, $sce, $interval) { $interval(function () { // do something }, 60000); }原创 2018-03-27 18:18:56 · 478 阅读 · 0 评论 -
Angularjs实现表格按指定列排序
<table class="table table-border" ng-app="myapp" ng-controller="orderByCtrl"> <thead> <tr> <th>inx</th> <th ng-click="col='na转载 2018-09-19 13:56:00 · 885 阅读 · 0 评论