2015年11月21日
摘要: 1.$achorScroll服务---用于描点跳转$scope.change = function(id){ $location.hash(id); $anchorScroll(); };只要给locatioin设置了对应的hash值,就可以直接跳转,但是还是手动执行一下$ancho... 阅读全文
posted @ 2015-11-21 21:47 toodeep 阅读(285) 评论(0) 推荐(0) 编辑
摘要: 1.angular的$http服务跟jquery中的ajax很类似,用法如下:$http({ method : 'GET', url : 'data.php' }).success(function(data,state,headers,config){ console.l... 阅读全文
posted @ 2015-11-21 21:30 toodeep 阅读(220) 评论(0) 推荐(0) 编辑
摘要: 1.自定义指令在angular中,module下面的directive方法用于创建自定义指令,用法:m1.directive('myTab',function(){ return { restrict : 'AE', replace : true, templateUrl : '... 阅读全文
posted @ 2015-11-21 11:55 toodeep 阅读(293) 评论(0) 推荐(0) 编辑