09 2016 档案

摘要:1 <?php 2 function deleteDir($dir) 3 { 4 if (!$handle = @opendir($dir)) { 5 return false; 6 } 7 while (false !== ($file = readdir($handle))) { 8 ... 阅读全文
posted @ 2016-09-29 10:41 cloudshadow 阅读(7723) 评论(0) 推荐(0)
摘要:1 bodyApp.controller('customersCtrl', function ($scope, $http, cfpLoadingBar,$compile) { 2 $scope.test = function(){ 3 alert('test'); 4 } 5 6 // TODO 动态生成html中 ng-click无效 解决方法 $compile 是传进来的 7 v... 阅读全文
posted @ 2016-09-26 10:37 cloudshadow 阅读(6194) 评论(0) 推荐(0)
摘要:"> "> 阅读全文
posted @ 2016-09-26 10:20 cloudshadow 阅读(173) 评论(0) 推荐(0)
摘要:$("#id").DataTable({ "info": false, // 禁止显示信息 }); 阅读全文
posted @ 2016-09-23 16:19 cloudshadow 阅读(691) 评论(0) 推荐(0)
摘要:$("#id").DataTable({ "paging": false, // 禁止分页 }); 阅读全文
posted @ 2016-09-23 16:18 cloudshadow 阅读(19302) 评论(0) 推荐(0)
摘要:1 $("#id").DataTable({ 2 "ordering": false, // 禁止排序 3 }); 阅读全文
posted @ 2016-09-23 15:30 cloudshadow 阅读(13621) 评论(0) 推荐(0)