lo he puesto así y no me anda. Saben por qué?
Código PHP:
<script type="text/javascript" language="javascript">
function LimitAttach(tField,iType) {
file=tField.value;
if (iType==1) {
extArray = new Array(".exe",".bat",".dll");
}
allowSubmit = false;
if (!file) return;
while (file.indexOf("\\") != -1) file = file.slice(file.indexOf("\\") + 1);
ext = file.slice(file.indexOf(".")).toLowerCase();
for (var i = 0; i < extArray.length; i++) {
if (extArray[i] == ext) {
allowSubmit = true
break;
}
}
if (allowSubmit) {
} else {
tField.value="";
alert("Las extensiones " + (extArray.join(" ")) + "\nNo estan permitidas");
}
}
</script>
Código HTML:
<form name="haha" action="">
<input type="file" name="file" onBlur='LimitAttach(this,n);' /><br />
<input type="submit" />
</form>