我有一个通过<input type=file>
函数上传图片的功能。
这是我的脚本
function readURL(input) {
if (input.files && input.files[0]) {
var reader = new FileReader();
reader.onload = function (e) {
$('.prw_img').attr('src', e.target.result).width(112).height(112);
};
reader.readAsDataURL(input.files[0]);
}
}
我的 HTML 代码是
<img class= "prw_img" style="width:112px;height:112px;"/>
<input id="file" type="file" onchange="readURL(this);" name="files[]">
我正在预览该<img>
标签中的图像。有没有办法将此上传的图像保存到我的系统
这是BIN。
而且我也不想弹出一个保存为对话框来打开。有没有办法将图像存储在数据库中