上一页 1 ··· 3 4 5 6 7 8 9 10 11 12 下一页
摘要: function UrlOption(url) { this.url = url || ''; this.init(); this.change = function (url) { this.url = url this.init(); } this.getP... 阅读全文
posted @ 2017-10-20 16:23 小结巴巴吧 阅读(264) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2017-10-20 14:47 小结巴巴吧 阅读(225) 评论(0) 推荐(0) 编辑
摘要: var arr = [343, 435, 23, 345, 234, 766, 436, 235, 578, 34, 56, 1, 57, 3] function Bubble() { /* * 内层的循环比较相邻的两个数字,比较---交换,将最大值调整到末尾 * 外层的循环每一次确定一个最大值到末尾 ... 阅读全文
posted @ 2017-10-20 13:58 小结巴巴吧 阅读(283) 评论(0) 推荐(0) 编辑
摘要: function Node(data,left,right) { this.left=left this.right=right this.data=data } function Btr() { this.root = null; } // D:根节点 L:左子节点 R:右子节点 ... 阅读全文
posted @ 2017-10-19 18:27 小结巴巴吧 阅读(631) 评论(0) 推荐(0) 编辑
摘要: GetUserMedia实例 1 2 3 4 5 6 7 ... 阅读全文
posted @ 2017-10-11 17:17 小结巴巴吧 阅读(160) 评论(0) 推荐(0) 编辑
摘要: Title 阅读全文
posted @ 2017-09-27 16:55 小结巴巴吧 阅读(177) 评论(0) 推荐(0) 编辑
摘要: 1.属性 navigator.onLine 在线返回true/离线返回false 2.事件 阅读全文
posted @ 2017-09-27 16:04 小结巴巴吧 阅读(262) 评论(0) 推荐(0) 编辑
摘要: 1.原型链继承 2.构造继承 3.实例继承 4.Object.create()方法继承 阅读全文
posted @ 2017-09-27 15:46 小结巴巴吧 阅读(146) 评论(0) 推荐(0) 编辑
摘要: 1.apply/call函数:会改变this关键字,并且第一个参数作为this关键字。 2.bing:会改变this关键字,并且第一个参数作为this关键字。 阅读全文
posted @ 2017-09-27 15:27 小结巴巴吧 阅读(126) 评论(0) 推荐(0) 编辑
摘要: 1.缓存分类:服务器缓存(协商缓存),第三方缓存,浏览器缓存(强制缓存) 2.浏览器缓存(添加 meta),设置请求指定的http头部信息。(状态码200,from cache , from dist) 2.服务器缓存 (状态码 304 ) 3.http头部属性 Expires:设置缓存时间(某一个 阅读全文
posted @ 2017-09-27 13:48 小结巴巴吧 阅读(331) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 12 下一页