function displayPreview(files) {
var reader = new FileReader();
var img = new Image();
reader.onload = function (e) {
img.src = e.target.result;
fileSize = Math.round(files.size / 1024);
if(fileSize>50) {
ret1=false;
alert("File size is " + fileSize + " kb");
return ret1;
} else {
var ret1 = true;
return ret1;
}
img.onload = function () {
if(this.width!="181" && this.height!="181") {
ret1=false;
alert("width=" + this.width + " height=" + this.height);
return ret1;
} else {
var ret1 = true;
return ret1;
}
console.log("width=" + this.width + " height=" + this.height+"File size is " + fileSize + " kb");
};
};
reader.readAsDataURL(files);
}
function chkform() {
var ret = false;
if (document.getElementById("file").value === "") {
console.log("empty");
} else {
var file = document.getElementById("file").files[0];
var tt=displayPreview(file);
console.log(tt+"nis");
}
return ret;
}
当用户点击提交按钮时,表单会显示onsubmit="return chkform();"
,然后我的checkform
会检查ID名称 file
是否为空
如果没有,则调用函数displayPreview()
。在该函数中,我正在检查大小是否不超过50,宽度和高度不等于width="181px"
和height="181px"
。
我正在返回,通过它我可以获得它返回真或假的信息
但在我的checkform
我正在 UNDEFINED
...为什么?
修改
在JSFIddle添加了复制代码:http://jsfiddle.net/nishit_bhardwaj/zaukV/
答案 0 :(得分:1)
抱歉,我没有使用您的代码,但这是您获取文件大小的方法。之后,它很容易验证。如果文件大小不正确,您还可以禁用或隐藏提交/上传按钮:
JS:
$("input:file").change(function () {
if ($(this).val() !== "") {
var file = $('#file_select')[0].files[0];
console.log(file.size);
}
});
HTML:
<input type="file" name="file" id="file_select" />
我添加了一些内容来获取宽度和预览图像: http://jsfiddle.net/rq8nA/1/