Fork me on GitHub
摘要: js 正则表达式一、正则表达式的作用:匹配一个字符串中的一些内容。二、声明和使用: /* 1.构造函数 var reg = new RegExp(/表达式/) 2.字面量 var reg = /表达式/ 推荐使用 eg: var reg = /abc/ 表示匹配含有abc 的字符串 常用方法:reg 阅读全文
posted @ 2018-01-17 10:53 小白不白10 阅读(718) 评论(0) 推荐(0) 编辑
摘要: 阻止冒泡和默认事件 阻止冒泡和默认事件 阅读全文
posted @ 2017-12-26 11:11 小白不白10 阅读(216) 评论(0) 推荐(0) 编辑
摘要: ios多个音效,延迟播放 阅读全文
posted @ 2017-12-12 16:41 小白不白10 阅读(780) 评论(0) 推荐(0) 编辑
摘要: Title 阅读全文
posted @ 2017-12-11 11:14 小白不白10 阅读(161) 评论(0) 推荐(0) 编辑
摘要: 本文所描述的滤镜,指的是 CSS3 出来后的滤镜,不是 IE 系列时代的滤镜,语法如下,还未接触过这个属性的可以先简单到 MDN -- filter 了解下: 先简单看看几种滤镜的效果: contrast/brightness -- hover 增亮图片 通常页面上的按钮,都会有 hover/act 阅读全文
posted @ 2017-12-06 16:24 小白不白10 阅读(519) 评论(0) 推荐(0) 编辑
摘要: 女 男 鱼 熊掌 阅读全文
posted @ 2017-12-06 14:56 小白不白10 阅读(1086) 评论(0) 推荐(0) 编辑
摘要: demo:https://controllerone.github.io/demo/ityped/ 阅读全文
posted @ 2017-11-27 13:51 小白不白10 阅读(578) 评论(0) 推荐(0) 编辑
摘要: demo: https://controllerone.github.io/test/ 阅读全文
posted @ 2017-11-13 16:54 小白不白10 阅读(375) 评论(0) 推荐(0) 编辑
摘要: 1、原型链方式 拿父类实例来充当子类原型对象 优点: 缺点: 修改sub1.arr后sub2.arr也变了,因为来自原型对象的引用属性是所有实例共享的。 可以这样理解:执行sub1.arr.push(2);先对sub1进行属性查找,找遍了实例属性(在本例中没有实例属性),没找到,就开始顺着原型链向上 阅读全文
posted @ 2017-11-08 16:23 小白不白10 阅读(175) 评论(0) 推荐(0) 编辑
摘要: JSONP是一个非官方的协议,它允许在服务器端集成Script tags返回至客户端,通过javascript callback的形式实现跨域访问 1、jsonp之$.ajax js php 2、jsonp之 getJSON js php 阅读全文
posted @ 2017-11-08 15:44 小白不白10 阅读(419) 评论(0) 推荐(0) 编辑