上一页 1 ··· 7 8 9 10 11 12 13 14 15 16 下一页
摘要: 基本语法:$http.post('url',{},{}).success(function(data,status,headers,config){}).error(function(data,status,headers,config){})$http.post接受三个参数:1. url: 请求的... 阅读全文
posted @ 2014-07-24 10:43 诗&远方 阅读(1714) 评论(0) 推荐(0)
摘要: 基本语法:$http.get('url',{}).success(function(data,status,headers,config){}).error(function(data,status,headers,config){})$http.get接受两个参数:1. url: 请求的路径2. ... 阅读全文
posted @ 2014-07-24 10:27 诗&远方 阅读(27964) 评论(4) 推荐(2)
摘要: 使用zepto里面的scrollTop()方法是没用哒~~~chrome浏览器: document.body.scrollTop = 一个数值其它浏览器:document.documentElement.scrollTop = 一个数值 阅读全文
posted @ 2014-07-24 09:54 诗&远方 阅读(610) 评论(0) 推荐(0)
摘要: $route-$routeProvider服务-依赖ngRoute模块$route能够在路径发生改变的时候,渲染不同的视图,调用不同的控制器.它监测了$location.url(),然后根据路径来匹配相应的路由,路由的定义方法详见$routeProvider的API.$route通常和$routeP... 阅读全文
posted @ 2014-07-17 19:15 诗&远方 阅读(2776) 评论(0) 推荐(0)
摘要: 反复用到却一直记不住...var a = $(window).height() //设备的高度var b = $(window).scrollTop() //滚动的高度var c = $(document).height() //整个文... 阅读全文
posted @ 2014-07-17 18:37 诗&远方 阅读(387) 评论(0) 推荐(0)
摘要: 原api出处:https://docs.angularjs.org/api/ngRoute/service/$routeParams$routeParams 可以获取当前路径参数.需要ngroute模块被安装。路径参数是$location.search()和$location.path()的组合. ... 阅读全文
posted @ 2014-07-16 15:31 诗&远方 阅读(4024) 评论(0) 推荐(0)
摘要: js代码:/*create by code_bunny 20140701 973295131@qq.com https://github.com/OOP-Code-Bunny*/(function ($) { $.fn.autoComplate = function (opts) { ... 阅读全文
posted @ 2014-07-01 15:54 诗&远方 阅读(1210) 评论(0) 推荐(0)
摘要: 模块化开发-pure:http://hefangshi.github.io/fis-site/docs/advance/modjs-solution.html三种语言能力(资源定位,内容嵌入,依赖管理):http://hefangshi.github.io/fis-site/docs/more/fi... 阅读全文
posted @ 2014-06-03 10:00 诗&远方 阅读(675) 评论(0) 推荐(0)
摘要: 普通的背景图片css是这样的:background-image:url(http://www.zhangxinxu.com/wordpress/wp-content/themes/default/images/zxx_dotted.gif);这种方法是把图片存在某个路径下,然后请求该图片,请求图片的... 阅读全文
posted @ 2014-06-02 13:21 诗&远方 阅读(2912) 评论(0) 推荐(0)
摘要: 本篇主要介绍angular中的表单验证:表单验证主要有以下一些内容:1. required指令: 相当于html5的required属性,验证不能为空2. ng-maxlength属性: 验证内容的长度最大值3. ng-minlength属性: 验证内容的长度最小值4. 表单名.$valid : 这... 阅读全文
posted @ 2014-05-27 17:51 诗&远方 阅读(2920) 评论(10) 推荐(3)
上一页 1 ··· 7 8 9 10 11 12 13 14 15 16 下一页