摘要:
①安装插件 此时右击会有: ②anywhere 阅读全文
摘要:
富文本的原理: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta ht 阅读全文
摘要:
原生js拖拽: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta ht 阅读全文
摘要:
// ① 当函数中没有this时,call()、apply()和直接执行没有区别 function fn(){ console.log("aaa") } fn() // aaa fn.call() // aaa fn是函数,函数也是对象,对象调用call()方法 fn.apply() // aaa 阅读全文
摘要:
什么是继承? A对象通过继承B对象,就可以拥有B对象的所有属性和方法。 原型链继承: 子类的原型是父类的实例,子类继承父类的所有私有属性、私有方法和其原型上的属性和方法。 // 定义父类Person function Person(name,age){ this.name=name; this.ag 阅读全文
摘要:
网页禁止复制并且右键失效: 第一种方法: <script> document.oncontextmenu=new Function("event.returnValue=false"); document.onselectstart=new Function("event.returnValue=f 阅读全文
摘要:
概念理解: 数组的解构赋值 对象的解构赋值 字符串的解构赋值 数值和布尔值的解构赋值 函数参数的解构赋值 数组的解构赋值: 一般的: const arr=[1,2,3,4]; let [a,b,c,d]=arr; console.log(a,b,c,d) // 1 2 3 4 复杂点的: const 阅读全文
摘要:
阅读全文
摘要:
//通过id名称获取元素对象 function getid(idName){ return document.getElementById(idName); } //随机获取min-max的随机整数 function getRand(min,max){ return parseInt(Math.ra 阅读全文
摘要:
需求:在1秒内,由一个颜色变到另一个颜色,不是1秒后再变色。 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initi 阅读全文