Angularjs编写KindEditor,UEidtor,jQuery指令

  目前angularJS非常火热,本人也在项目中逐渐使用该技术,在angularJS中,指令可以说是当中非常重要的一部分,这里分享一些自己编写的指令:

  注:本人项目中用了oclazyload进行部分JS文件加载

  1、KindEditor

代码如下:

  2、UEditor:

代码如下:

  3、jquery.Datatable:

代码如下:
0) { for (var i = 0; i < chooseData.length; i++) { listID += chooseData[i].value + ","; } } return listID.substring(0,listID.length - 1); } $scope.refreshTable = function () { $scope.dataTable.fnClearTable(0); //清空数据 $scope.dataTable.fnDraw(); //重新加载数据 } uiLoad.load(['../Areas/AdminManage/Content/Vendor/jquery/datatables/jquery.dataTables.min.js', '../Areas/AdminManage/Content/Vendor/jquery/datatables/dataTables.bootstrap.js', '../Areas/AdminManage/Content/Vendor/jquery/datatables/dataTables.bootstrap.css']).then(function () { var options = {}; if ($scope.dtOptions) { angular.extend(options,$scope.dtOptions); } options["processing"] = false; options["info"] = false; options["serverSide"] = true; options["language"] = { "processing": '正在加载...', "lengthMenu": "每页显示 _MENU_ 条记录数", "zeroRecords": '
', "info": "当前显示第 _PAGE_ 页 共 _PAGES_ 页", "infoEmpty": "空", "infoFiltered": "搜索到 _MAX_ 条记录", "search": "搜索", "paginate": { "first": "首页", "prevIoUs": "上一页", "next": "下一页", "last": "末页" } } options["fnRowCallback"] = function (nRow,aData,iDisplayIndex,iDisplayIndexFull) { $compile(nRow)($scope); } $scope.dataTable = $element.dataTable(options); }); $element.find("thead th").each(function () { $(this).on("click","input:checkBox",function () { var that = this; $(this).closest('table').find('tr > td:first-child input:checkBox').each(function () { this.checked = that.checked; $(this).closest('tr').toggleClass('selected'); }); }); }) } }]);

以上3则就是本人编写的AngularJS指令,这里抛砖引玉下,希望对小伙伴们能有所帮助,

相关文章

jQuery插件的种类 1、封装对象方法 这种插件是将对象方法封装起来,用于对通过选择器获取的jQuery对象进...
扩展jQuery插件和方法的作用是非常强大的,它可以节省大量开发时间。 入门 编写一个jQuery插件开始于给...
最近项目中需要实现3D图片层叠旋转木马切换的效果,于是用到了jquery.roundabout.js。 兼容性如图: ht...
一、什么是deferred对象? 开发网站的过程中,我们经常遇到某些耗时很长的javascript操作。其中,既有异...
AMD 模块 AMD(异步模块定义,Asynchronous Module Definition)格式总体的目标是为现在的开发者提供一...