摘要: var YourCtrl = function($scope, localStorageService, ...) { // To add to local storage localStorageService.set('localStorageKey','Add this!'); // Read 阅读全文
posted @ 2017-01-03 16:34 happiness木木 阅读(6953) 评论(0) 推荐(0) 编辑
摘要: 向指令添加过滤器 过滤器可以通过一个管道字符(|)和一个过滤器添加到指令中。 orderBy 过滤器根据表达式排列数组: 例如: <div ng-app="myApp" ng-controller="namesCtrl"><p>循环对象:</p><ul> <li ng-repeat="x in na 阅读全文
posted @ 2016-12-30 14:31 happiness木木 阅读(1188) 评论(0) 推荐(0) 编辑
摘要: Popover可点多个按钮弹出同一个浮动框但内容不一样。那想要在同一页面弹出不同的浮动框怎么办呢? 这事就用到了$ionicModal,他和$ionicPopover一样的用法。 请看图: html: controller.js: angular.module('ionicApp', ['ionic 阅读全文
posted @ 2016-12-30 14:30 happiness木木 阅读(1982) 评论(0) 推荐(0) 编辑
摘要: 在ionic.html中 在controller.js中 阅读全文
posted @ 2016-12-22 14:36 happiness木木 阅读(689) 评论(0) 推荐(0) 编辑
摘要: 1.当前系统区域设置格式(toLocaleDateString和toLocaleTimeString) 例子:(new Date()).toLocaleDateString() + " " + (new Date()).toLocaleTimeString()结果: 2008年1月29日 16:13 阅读全文
posted @ 2016-11-17 14:26 happiness木木 阅读(402) 评论(0) 推荐(0) 编辑
摘要: Js获取当前日期时间及其它操作var myDate = new Date();myDate.getYear(); //获取当前年份(2位)myDate.getFullYear(); //获取完整的年份(4位,1970-????)myDate.getMonth(); //获取当前月份(0-11,0代表 阅读全文
posted @ 2016-11-17 12:30 happiness木木 阅读(4731) 评论(0) 推荐(0) 编辑
摘要: /*添加事件 */box.addEventListener('click',function(){ //do something },false);//IE6 7 8不支持box.attachEvent('onclick',function(){ //do something});//IE支持//获 阅读全文
posted @ 2016-11-16 15:26 happiness木木 阅读(137) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title>loading</title> <style> .loading{ width: 80px; height: 40px; margin: 0 auto; margin-top:100 阅读全文
posted @ 2016-11-15 18:17 happiness木木 阅读(323) 评论(0) 推荐(0) 编辑
摘要: SEO 优化部分 页面标题<title>标签(head 头部必须) <title>your title</title> 页面关键词 keywords <meta name="keywords" content="your keywords"> 页面描述内容 description <meta nam 阅读全文
posted @ 2016-11-11 18:01 happiness木木 阅读(3746) 评论(0) 推荐(0) 编辑
摘要: Meta 标签 meta标签是HTML中head头部的一个辅助性标签,它位于HTML文档头部的 <head> 和 <title> 标记之间,它提供用户不可见的信息。虽然这部分信息用户不可见,但是其作用非常强大,特别是当今的前端开发工作中,设置合适的meta标签可以大大提升网站页面的可用性。 桌面端开 阅读全文
posted @ 2016-11-11 16:48 happiness木木 阅读(345) 评论(0) 推荐(0) 编辑