
AngularJS学习
文章平均质量分 68
蚂蚁冲锋队
知识取之于网络用之于网路
展开
-
angularJS自定义directive之带参方法传递
angularJS directive的参数传递一直比较模糊 现记录下来以便日后学习原创 2017-01-16 12:00:42 · 8952 阅读 · 2 评论 -
关于在android webview上运行html5的开发经验
通过实际的开发历程,解决android webview中缓存图片的问题原创 2017-01-18 16:36:49 · 1622 阅读 · 0 评论 -
angularjs之directive实例
Angularjs作为强大的web前端开发框架,在其诸多的优势中directive不得不提。当你在开发中需要使用自定义的控件或者属性时,directive就显得特别有用, 下面结合自己的开发经验来谈谈directive的使用原创 2017-01-19 09:10:23 · 306 阅读 · 0 评论 -
angularJs 简单实例
入口 agtest.html Insert title here A B testApp.js /**获得全局app对象*/ var testApp = angular.module('testApp', [ 'ngRoute']); /**配置路由器*/ testApp.conf原创 2017-01-22 14:44:13 · 687 阅读 · 0 评论 -
angularjs手动识别字符串中的换行符
情景一 html: style="text-align: left;color: yellow;" disabled="true">{{value}} controller: $scope.value="1.javaScript \n 2.html5 \n 3.C++"; 显示: 1.javaScript 2.html5 3.C++ 情景二原创 2017-02-10 10:34:52 · 4779 阅读 · 0 评论