2022年1月19日
摘要: function Color(elem){ this.elem=elem; this.color=["blue","#9b59b6","#f39c12","#1abc9c"]; this.run=function(){ setInterval( function(){ console.log(thi 阅读全文
posted @ 2022-01-19 23:16 weakup 阅读(14) 评论(0) 推荐(0) 编辑
摘要: function show(){ console.log(this.name); } show.bind({name:"houdunren"})();//加了(),因为不是立即执行函数 function show(){ // this.name=name; console.log(this.name 阅读全文
posted @ 2022-01-19 22:39 weakup 阅读(41) 评论(0) 推荐(0) 编辑