面试题
文章平均质量分 64
FE-Dong
如果一个人没了明确的目标,那么就会被各种琐事打扰,并且没完没了
展开
-
JSONP前后端实现原理
前端: //动态创建script标签,并请求 function addScriptTag(src){ var script = document.createElement('script'); script.setAttribute('type', 'text/javascript'); script.src = src; ...转载 2018-06-01 14:12:01 · 1184 阅读 · 0 评论 -
一些常见JS面试题
1、监测数据类型 function isType(o) { return Object.prototype.toString.call(o).slice(8,-1); }2、实现函数bind 的方法Function.prototype.bind=Function.prototype.bind || function (context) { var self =...原创 2018-06-01 14:21:11 · 327 阅读 · 0 评论 -
常见css面试题
一、盒子居住 (1)(未知盒子宽高) transform居中,可以不知道宽高 .wrapper { padding: 20px; background: orange; color: #fff; position: absolute; top: 50%; left: 50%; ...原创 2018-06-01 14:34:33 · 227 阅读 · 0 评论 -
commonJS和AMD简单实现原理
a.js内容:module.exports= "笔记整理来自珠峰公开课";1、commonJS(1)用法 CommonJS定义的模块分为:{模块引用(require)} {模块定义(exports)} {模块标识(module)} require()用来引入外部模块;exports对象用于导出当前模块的方法或变量,唯一的导出口;module对象就代表模块本身。 虽说Node...原创 2018-06-01 14:51:31 · 1028 阅读 · 0 评论 -
理解JS的节流、防抖及使用场景
文章来源: https://juejin.im/post/5b8de829f265da43623c4261 函数防抖(debounce)在事件被触发n秒后再执行回调,如果在这n秒内又被触发,则重新计时。//模拟一段ajax请求function ajax(content) { console.log('ajax request ' + content)}fun...转载 2018-09-05 09:55:46 · 3711 阅读 · 1 评论