var ImgObj=new Image();中的Image究竟是JavaScript中的什么对象,在哪查询API?我查过了不是内置对象。
API地址:
https://developer.mozilla.org/en-US/docs/Web/API/HTMLImageElement
下面来看看Image到底是个什么东东,我先将Image在W3C的标准地址贴出来
http://dev.w3.org/html5/spec-preview/the-img-element.html#dom-image
Three constructors are provided for creating HTMLImageElement objects (in addition to the factory methods from DOM Core such as createElement()): Image(), Image(width), and Image(width, height). When invoked as constructors, these must return a new HTMLImageElement object (a new img element).
标准里面说得很清楚,Image是用来创建HTMLImageElement对象的。
然后我们再来看一幅图
Image与HTMLImageElement 在toString()时,输出的内容都是一样的,但是Image与HTMLImageElement并不是同一个对象,所以我猜想Image是HTMLImageElement的一个封装类,用来构造HTMLImageElement的实例对象。
只要是dom元素都可以通过对应的方法来显示创建对象。
只是我们平时在做的时候浏览器已经帮我们定义好了对象,我们直接哪来用就可以了。