打赏
上一页 1 ··· 23 24 25 26 27 28 29 30 31 ··· 88 下一页
摘要: 1、api setTimeout: https://developer.mozilla.org/zh-CN/docs/Web/API/Window/setTimeout setInterVal https://developer.mozilla.org/zh-CN/docs/Web/API/Wind 阅读全文
posted @ 2019-03-09 20:30 孟繁贵 阅读(1096) 评论(0) 推荐(0) 编辑
摘要: function instanceof(left, right) { // 获得类型的原型 let prototype = right.prototype // 获得对象的原型 left = left.__proto__ // 判断对象的类型是否等于类型的原型 while (true) { if ( 阅读全文
posted @ 2019-03-09 20:16 孟繁贵 阅读(570) 评论(0) 推荐(0) 编辑
摘要: 题目: 代码实现: 阅读全文
posted @ 2019-03-08 11:12 孟繁贵 阅读(27642) 评论(5) 推荐(5) 编辑
摘要: 1、视频 video 2、音频 audio 3、拖放 Drag 和 drop 4、画布 canvas 5、SVG 6、地理定位 navigator.geolocation.getCurrentPosition 7、web 存储 localStorage 和 sessionStorage 8、应用缓存 阅读全文
posted @ 2019-03-07 10:44 孟繁贵 阅读(2007) 评论(0) 推荐(0) 编辑
摘要: 1、全局属性 Infinity NaN undefined 2、全局函数 encodeURI encodeURIComponent decodeURIComponent escape unescape eval isFinite isNaN parseFloat parseInt Number St 阅读全文
posted @ 2019-03-07 10:20 孟繁贵 阅读(1245) 评论(0) 推荐(0) 编辑
摘要: 1、存储方式分类 (1)Local Storage (2)Session Storage (3)IndexedDB (4)Web SQL (5)Cookie 2、区别 (1)Local Storage localStorage 中的键值对是以字符串的形式存储,除非清除,否则长期有效。 (2)Sess 阅读全文
posted @ 2019-03-06 16:08 孟繁贵 阅读(1522) 评论(0) 推荐(0) 编辑
摘要: 1、api说明 (1)substring substring 提取从 indexStart 到 indexEnd(不包括)之间的字符。特别地: 如果 indexStart 等于 indexEnd,substring 返回一个空字符串。 如果省略 indexEnd,substring 提取字符一直到字 阅读全文
posted @ 2019-03-06 11:39 孟繁贵 阅读(282) 评论(0) 推荐(0) 编辑
摘要: 1、iframe iframe主要来内联一个外联的页面,如: iframe可以支持很多属性,如width,height,aligh等。 2、frame frame示例: 区别:(1)frame框架需要定义在frameset中。(2)html页面中没有body标签。(3)frame支持的属性比较少。 阅读全文
posted @ 2019-03-06 09:37 孟繁贵 阅读(340) 评论(0) 推荐(0) 编辑
摘要: 1、代码实现 2、效果 阅读全文
posted @ 2019-03-06 09:18 孟繁贵 阅读(697) 评论(0) 推荐(0) 编辑
摘要: 1、内置函数 2.内置对象 阅读全文
posted @ 2019-03-04 09:17 孟繁贵 阅读(916) 评论(0) 推荐(0) 编辑
上一页 1 ··· 23 24 25 26 27 28 29 30 31 ··· 88 下一页
TOP