会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
summercyz
博客园
首页
新随笔
联系
订阅
管理
2018年1月29日
状态码
摘要: 301 Move Permanently 302 Fond 303 See Other 304 Not Modified 307 Temporary Redirect 401 Unauthorizied 403 Forbidden 404 Not Found 500 Internal Server
阅读全文
posted @ 2018-01-29 09:55 summercyz
阅读(108)
评论(0)
推荐(0)
2018年1月18日
事件流模型
摘要: 事件流模型 : 1 冒泡型事件流模型 2 捕获型事件流模型 在冒泡型事件流中click事件传播顺序为<div>—》<body>—》<html>—》document 在捕获型事件流中click事件传播顺序为document—》<html>—》<body>—》<div> DOM标准规定事件流包括三个阶段
阅读全文
posted @ 2018-01-18 12:49 summercyz
阅读(206)
评论(0)
推荐(0)
2018年1月17日
matrix的应用
摘要: rotate: skew: 对称
阅读全文
posted @ 2018-01-17 16:29 summercyz
阅读(159)
评论(0)
推荐(0)
2018年1月9日
js实现继承的几种方式
摘要: 1 构造函数 2 原型链 3 组合继承 4 原型式继承 5 寄生式继承 6 寄生组合式继承
阅读全文
posted @ 2018-01-09 16:25 summercyz
阅读(144)
评论(0)
推荐(0)
call和apply的区别
摘要: call,apply都属于Function.prototype的一个方法 每个Function对象实例(就是每个方法)都有call,apply属性 语法:foo.call(this, arg1,arg2,arg3) == foo.apply(this, arguments) == this.foo(
阅读全文
posted @ 2018-01-09 14:52 summercyz
阅读(110)
评论(0)
推荐(0)
jsonP的原理和实现
摘要: 在JavaScript中,有一个很重要的安全性限制,被称为“Same-Origin Policy”(同源策略) 这一策略对于JavaScript代码能够访问的页面内容做了很重要的限制,即JavaScript只能访问与包含它的文档在同一域下的内容 当我们必须进行跨域请求时 利用在页面中创建<scrip
阅读全文
posted @ 2018-01-09 14:06 summercyz
阅读(125)
评论(0)
推荐(0)
2017年12月17日
大小不固定图片垂直居中
摘要: .pic_box { width: 300px; height: 300px; font-size: 0; text-align: center; } .pic_box:after { display: inline-block; width: 0; height: 100%; content: '.'; vertical-...
阅读全文
posted @ 2017-12-17 20:08 summercyz
阅读(170)
评论(0)
推荐(0)
清除浮动
摘要: 清除浮动造成的坍塌
阅读全文
posted @ 2017-12-17 19:41 summercyz
阅读(73)
评论(0)
推荐(0)
2017年12月14日
git 小结
摘要: 以前断断续续用过git 在github上用客户端上传过 但是没有好好整理过git的知识 今天重温了下 顺便整理了下 git status git commit -m git log --pretty=oneline git reflog git reset HEAD readme.txt 暂存区的修
阅读全文
posted @ 2017-12-14 12:04 summercyz
阅读(134)
评论(0)
推荐(0)
2017年11月26日
用vue写项目main.js 中的一些设置
摘要: routes ,Vue, VueRouter,store 都是跟vue vuex 和vuerouter 有关的 $是为了进行类似jquery的操作引进的库 FastClick解决移动端点击300ms延迟的问题 直接FastClick.attach(document.body) alert是当有err
阅读全文
posted @ 2017-11-26 21:59 summercyz
阅读(13060)
评论(0)
推荐(0)
下一页
公告