上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 28 下一页
  2022年3月1日
摘要: div { color: red; font-size: 12px; } div { color: pink; } <div>长江后浪推前浪,前浪死在沙滩上</div> 阅读全文
posted @ 2022-03-01 22:36 weakup 阅读(13) 评论(0) 推荐(0) 编辑
  2022年2月1日
摘要: function load(src,resolve,reject){ let image=new Image(); image.src=src; image.onload=resolve; image.onerror=reject; } load( "../images/1.jpg", ()=>{ 阅读全文
posted @ 2022-02-01 15:57 weakup 阅读(108) 评论(0) 推荐(0) 编辑
摘要: let module=(function(){ const moduleList={}; function define(name,modules,action){ modules.map((m,i)=>{ modules[i]=moduleList[m]; }) moduleList[name]= 阅读全文
posted @ 2022-02-01 11:32 weakup 阅读(22) 评论(0) 推荐(0) 编辑
摘要: function User(){} function Admin(){} Admin.prototype=Object.create(User.prototype); let hd=new Admin(); console.log(hd instanceof Admin); console.log( 阅读全文
posted @ 2022-02-01 09:53 weakup 阅读(29) 评论(0) 推荐(0) 编辑
  2022年1月30日
摘要: 原生JS(es5)中的静态方法 //原生JS中的静态方法 function Person(name, age) { this.name = name; this.age = age; this.run = function () { console.log(`${this.name} is ${th 阅读全文
posted @ 2022-01-30 13:33 weakup 阅读(34) 评论(0) 推荐(0) 编辑
摘要: class User{ // 属性 sitr='hdsj'; constructor(name){ this.name=name; } getName(){ return this.name; } changeSite(value){ this.site=value; } show(){ retur 阅读全文
posted @ 2022-01-30 11:27 weakup 阅读(64) 评论(0) 推荐(0) 编辑
  2022年1月29日
摘要: //使用原型工厂封装继承 function extend(sub,sup){ sub.prototype=Object.create(sup.prototype); Object.defineProperty(sub.prototype,"constructor",{ value:sub, enum 阅读全文
posted @ 2022-01-29 20:00 weakup 阅读(22) 评论(0) 推荐(0) 编辑
摘要: //使用原型工厂封装继承 function extend(sub,sup){ sub.prototype=Object.create(sup.prototype); Object.defineProperty(sub.prototype,"constructor",{ value:sub, enum 阅读全文
posted @ 2022-01-29 19:54 weakup 阅读(15) 评论(0) 推荐(0) 编辑
摘要: function User(name,age){ this.name=name; this.age=age; } User.prototype.show=function(){ console.log(this.name,this.age); } function Admin(...args){ / 阅读全文
posted @ 2022-01-29 19:46 weakup 阅读(65) 评论(0) 推荐(0) 编辑
摘要: function Admin(){ Admin.prototype.showAdmin=function(){ return "admin"; } } function Enterprise(){ Enterprise.prototype.showEnterprise=function(){ ret 阅读全文
posted @ 2022-01-29 19:36 weakup 阅读(4) 评论(0) 推荐(0) 编辑
上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 28 下一页