Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想为原型添加一个图像预览的方法。input type="file"它的原型存在吗?像HTMLInputFileElement什么?我找到:
input type="file"
HTMLInputFileElement
HTMLInputElement
我应该在这里做什么?
您只需对HTMLInputElement对象进行原型制作。不同类型的输入元素没有唯一的对象。它们都是HTMLInputElement具有指定其类型(文本/密码/文件)的属性的 s。这是一个示例:http: //jsfiddle.net/wwE6h/。