使用javascript将Image附加到类型文件的输入

时间:2014-05-06 10:47:17

标签: javascript jquery html5

我希望用户从网络摄像头拍照或上传照片。如果他选择拍照,它应该加载uploadFile。即使这是可能的,我也不知道。我愿意接受建议。

//I have an image

<img id="photo"> // I am getting this from webcam

//And I have an input of type file upload

<input type="file" name="uploadedFile" id="uploadedFile" accept="image/*">

// Now this image data in photo should go to uploadedFile. Is it possible?

1 个答案:

答案 0 :(得分:2)

这是不可能的。

您可以将数据编码为文本(例如base64)并将其存储在隐藏输入中,也可以使用XMLHttpRequest对象而不是表单提交将其发送到服务器。