js选择文件进行上传转换为base64的方法:
let reader = new FileReader(); reader.readAsDataURL(file[0]) console.log(reader)
file[0]是文件对象
window.setInterval(method,time)方法本身会返回一个资源句柄,使用clearInterval(Intervalid)方法即可清除定时器<script> var num=0; //每隔1秒再控制台输...
查看文章前你需要了解以下2点://1.this指向的是windows对象,通过console.log(this)可以查看到对象包含所有的方法和属性//2.全局变量属于this对象的属性通过console.log(this)可以查看到对象包含我们设置的全局变量我们经常在创建相同结构的Js对象会重复的设...
//构造函数 function Box(name,age){ this.name=name; this.age=age; this.run=function(){ return this.name+'--'+this.age; } } var&nbs...
基本结构:箭头函数左边是参数,右边是返回值//创建func函数let func = num => num;//上面的func函数等价于let oldFunc = function (num) {...
JavaScript类型判断的四种方法:1.typeof、2.instance of、3.Object.prototype.toString.call()、4.constructorJavaScript数据类型JavaScript有八种内置类型,除对象外,其他统称为“基本类型”。 空值(null)...
只需要每个选择器之间用,隔开.class_a , .class_b{ text-decoration: none; color: #474747; }这东西都能忘记...