I have searched the Web and SO to figure this one out by myself with many different ways, but with no success.
I would like to show a message if the file extension is accepted or not, in the same fashion as the "outpush.push" statements.
This would need to be taken from an ARRAY of accepted file extensions such as JPG, PNG, GIF and detect if the file extension is uppercase and accept it (convert it to lowercase).
Here is my script. Am wondering how and where in the script could I implement such a feature?
function handleFileSelect(evt) {
var files = evt.target.files; // FileList object
var max_size = 5120; // Max file size
var output = [];
for (var i = 0, f; f = files[i]; i++) {
output.push('<li><strong><font size="3" color="FFFFFF">FILE: ', escape(f.name), '</strong> (', f.type || 'n/a', ') - ',
f.size, ' bytes, last modified: ',
f.lastModifiedDate ? f.lastModifiedDate.toLocaleDateString() : 'n/a',
'</font></li>');
if(f.size > max_size) {
output.push('<font size="5" color="FFFF00"><b>ERROR!! Sorry, but the file that you selected is too large. Please upload a file that is no larger than ' + max_size + ' KB.');
}
if(f.size < max_size) {
output.push('<font size="5" color="FFFF00"><b>FILE SIZE OK. CLICK TO SEND button below.</font>');
output.push('<font size="5" color="FFFFFF"><hr><b>IMPORTANT: Do not close this window. Wait till you see the next page when finished uploading your file.</font>');
document.getElementById("myButton").style.display="all";
}
}
document.getElementById('list').innerHTML = '<ul>' + output.join('') + '</ul>';
}
document.getElementById('files').addEventListener('change', handleFileSelect, false);
I have searched the Web and SO to figure this one out by myself with many different ways, but with no success.
I would like to show a message if the file extension is accepted or not, in the same fashion as the "outpush.push" statements.
This would need to be taken from an ARRAY of accepted file extensions such as JPG, PNG, GIF and detect if the file extension is uppercase and accept it (convert it to lowercase).
Here is my script. Am wondering how and where in the script could I implement such a feature?
function handleFileSelect(evt) {
var files = evt.target.files; // FileList object
var max_size = 5120; // Max file size
var output = [];
for (var i = 0, f; f = files[i]; i++) {
output.push('<li><strong><font size="3" color="FFFFFF">FILE: ', escape(f.name), '</strong> (', f.type || 'n/a', ') - ',
f.size, ' bytes, last modified: ',
f.lastModifiedDate ? f.lastModifiedDate.toLocaleDateString() : 'n/a',
'</font></li>');
if(f.size > max_size) {
output.push('<font size="5" color="FFFF00"><b>ERROR!! Sorry, but the file that you selected is too large. Please upload a file that is no larger than ' + max_size + ' KB.');
}
if(f.size < max_size) {
output.push('<font size="5" color="FFFF00"><b>FILE SIZE OK. CLICK TO SEND button below.</font>');
output.push('<font size="5" color="FFFFFF"><hr><b>IMPORTANT: Do not close this window. Wait till you see the next page when finished uploading your file.</font>');
document.getElementById("myButton").style.display="all";
}
}
document.getElementById('list').innerHTML = '<ul>' + output.join('') + '</ul>';
}
document.getElementById('files').addEventListener('change', handleFileSelect, false);
Share
Improve this question
edited Mar 1, 2013 at 19:24
Jeff B
30.1k7 gold badges63 silver badges90 bronze badges
asked Mar 1, 2013 at 19:12
Funk Forty NinerFunk Forty Niner
74.2k15 gold badges70 silver badges143 bronze badges
11
- Where is the jQuery? All of this looks like basic JavaScript. – Jeff B Commented Mar 1, 2013 at 19:18
- You're right. I'll edit my question. I thought it was. – Funk Forty Niner Commented Mar 1, 2013 at 19:21
-
There are already answers below, but I will add that you have
if(f.size > max_size)
andif(f.size < max_size)
. The second should just be anelse
statement. Also, iff.size == max_size
, you won't get any message. – Jeff B Commented Mar 1, 2013 at 19:37 - @JeffB - I got rid of one statement and replaced with the other, and still no success. I can't pinpoint where it's failing. – Funk Forty Niner Commented Mar 1, 2013 at 20:13
- See my answer below. It seems to be working in my example. – Jeff B Commented Mar 1, 2013 at 22:00
3 Answers
Reset to default 9There are a couple of issues with your code.
1) You should use an if-else
, instead of multiple if
statements:
if (f.size > max_size) {
// ...
} else {
// ...
}
2) all
is not a valid value for display
, use block
or inline
:
document.getElementById("myButton").style.display = "block";
3) You are using outdated <font>
tags. Instead, use styles and CSS. In your case, I would use classes, one for a msg
, plus additional classes for error
, important
, and ok
.
4) To do the array check, just use indexOf()
:
var extensions = ["jpg", "jpeg", "txt", "png"]; // Globally defined
...
// Get extension and make it lowercase
// This uses a regex replace to remove everything up to
// and including the last dot
var extension = f.name.replace(/.*\./, '').toLowerCase();
if (extensions.indexOf(extension) < 0) { // Wasn't found
output.push('<li class="msg error">ERROR!! Sorry, but the file that you selected is not a valid file type. Valid types are: ', valid, '</li>');
} else ...
Demo: http://jsfiddle/jtbowden/L2Gps/
You can have the array as something like this:
var file_types = {'jpg', 'png', 'gif'};
and then do something like this in your for-loop
if ($.inArray(f.ext, file_types) == -1) {
output.push('<font size="5" color="FFFF00"><b>ERROR!! Incorrect file type! Accepted file types are : jpg, png, gif</b></font>');
}
More reading about inArray().
You can try one of two approaches - either try a grab the extension and match it against an array of allowed extensions, or a regular expression.
var accepted_types = ['jpg', 'gif', 'png'];
if (accepted_types.indexOf(f.ext) > 0) {
output.push(...);
}
As for the jQuery - you might consider the following for building your HTML
var file_list = $("<ul></ul>");
for (var i = 0, f; f = files[i]; i++) {
// work goes here, simply append the list elements into file_list
file_list.append($("<li>" ... "</li>"));
}
// to append your new list to id="list"
$("#list").append(file_list);
// or to replace the html with your new html
$("#list").html(file_list.html());