当前位置:网站首页>JS bottom handwriting
JS bottom handwriting
2022-08-03 04:31:00 【weixin_46051260】
instanceOf
function myInstanceof(left, right) {
//基本数据类型直接返回false
if(typeof left !== 'object' || left === null) return false;
//getProtypeOf是Object对象自带的一个方法,能够拿到参数的原型对象
let proto = Object.getPrototypeOf(left);
while(true) {
//查找到尽头,还没找到
if(proto == null) return false;
//找到相同的原型对象
if(proto == right.prototype) return true;
proto = Object.getPrototypeOf(proto);
} }
防抖
var btn=document.querySelector('button')
var ipt=document.querySelector('input')
btn.addEventListener('click',debounce(getValue,2000))
function getValue(){
var val=ipt.value
console.log(val);
}
function debounce(fn,time){
let t=null
return function(){
if(t){
clearTimeout(t)
}
var firstClick=!t
if(firstClick){
fn.apply(this,arguments)
}
t=setTimeout(() => {
t=null
}, time);
}
}
节流
var btn=document.querySelector('button')
var ipt=document.querySelector('input')
btn.addEventListener('click',throttle(getValue,2000))
function getValue(){
var val=ipt.value
console.log(val);
}
function throttle(fn,time){
var begin=0
return function(){
var date=new Date().getTime()
if(date-begin>time){
fn.apply(this,arguments)
begin=date
}
}
}
call
Function.prototype.myCall = function (obj) {
var obj = obj || window
obj.fn = this//指向person
var args = [...arguments].slice(1)
var result = obj.fn(...args)
// 删除 fn
delete obj.fn
return result
}
function person(a,b,c){
return {
name:this.name,
a:a,b:b,c:c
}
}
var obj={
name:'jack'
}
var bili=person.myCall(obj,1,2,3)
console.log(bili);
apply
Function.prototype.myApply = function (context,arr) {
var context = context || window
context.fn = this
// 需要判断是否存储第二个参数
// 如果存在,就将第二个参数展开
if (arr) {
result= context.fn(...arr)
} else {
result = context.fn()
}
delete context.fn
return result
}
function person(a, b, c) {
return {
name: this.name,
a: a, b: b, c: c
}
}
var obj = {
name: 'jack'
}
console.log(person.myApply(obj,[1,2,3]));
bind
边栏推荐
- CobalStrike(CS)基础超级详细版
- Record some bugs encountered - when mapstruct and lombok are used at the same time, the problem of data loss when converting entity classes
- Live | StarRocks technology insider: low base dictionary global optimization
- 【Harmony OS】【ARK UI】ets使用startAbility或startAbilityForResult方式调起Ability
- 正则表达式与绕过案例
- 深圳线下报名|StarRocks on AWS:如何对实时数仓进行极速统一分析
- 社交电商:流量红利已尽,裂变营销是最低成本的获客之道
- 那些让电子工程师崩溃瞬间,你经历了几个呢?
- 超好用的画图工具推荐
- 10.预测房价:回归问题
猜你喜欢
随机推荐
关于#sql#的问题,如何解决?
excerpt from compilation book
记录一些遇见的bug——mapstruct和lombok同时使用时,转换实体类时数据丢失问题
DOM破环和两个实验的复现
1.一个神经网络示例
常见荧光染料修饰多种基团及其激发和发射波长数据一览数据
DFS对剪枝的补充
移动流量的爆发式增长,社交电商如何选择商业模式
JS底层手写
工程水文学知识点
超好用的画图工具推荐
WinForm的控件二次开发
DC-3靶场搭建及渗透实战详细过程(DC靶场系列)
肖sir_测试点
【Harmony OS】【ArkUI】ets开发 图形与动画绘制
2022 the first of the new league henan (4) : zhengzhou university of light industry G - maze
DDL操作数据库、表、列
7.Keras开发简介
t条件判断语句与if循环
v-text指令:设置标签内容