所以我有一个带上传的HTML表单。
<input type="file" name="uploaded_file" id="uploaded_file">
使用jQuery我正在对文件进行客户端大小检查。
jQuery('#uploaded_file').bind('change', function() {
var size = this.files[0].size/1024/1024;
if (size > 3.00){
jQuery("#upload_msg").html('File size is ' + size.toFixed(2) + ' / 3.00 MB.');
}
if (size <= 3.00){
jQuery("#upload_msg").html('File size is ' + size.toFixed(2) + ' / 3.00 MB.');
}});
我想设置一个条件,以便在用户选择文件时,改变主意并取消选择要上传的文件,以便jQuery调整回原始格式。
如何为此设置条件?谢谢!
答案 0 :(得分:1)
您需要使用输入标记的val()方法检查值,如果它包含文件名,您应该使用逻辑,否则跳过逻辑。