Ver Mensaje Individual
  #3 (permalink)  
Antiguo 01/08/2007, 08:46
Pollito_69
 
Fecha de Ingreso: julio-2007
Mensajes: 62
Antigüedad: 17 años, 4 meses
Puntos: 0
Re: Ayuda para mostrar texto en un div

Muchisimas gracias por responder, pero como ya puse en la edición del primer post
Cita:
Iniciado por Pollito_69 Ver Mensaje
EDITO: Ya está arreglado, muchas gracias
ya lo arreglé con la funcion innerHTML.
Aún así, me acaba de surgir otra duda, y es que el script funciona perfectamente en Firefox, pero en cambio en IE no, ¿que es lo que ocurre? S2

Código PHP:
function LimitAttach(tField,iType) {
file=tField.value;
if (
iType==1) {
extArray = new Array(".gif",".jpg",".png");
}
allowSubmit false;
if (!
file) return;
while (
file.indexOf("\\") != -1file file.slice(file.indexOf("\\") + 1);
ext file.slice(file.indexOf(".")).toLowerCase();
for (var 
0extArray.lengthi++) {
if (
extArray[i] == ext) {
allowSubmit true;
break;
}
}
if (
allowSubmit) {
document.getElementById('permitidas').style.display 'none';
} else {
extensiones="<strong>AVISO</strong>:Sólo puedes subir imágenes con las extensiones " "<strong>" + (extArray.join(" ")) + "</strong>" ".<br>Por favor selecciona un archivo distinto";
tField.value="";
/*alert("Sólo puedes subir imágenes con las extensiones " + (extArray.join(" ")) + "\nPor favor selecciona un archivo distinto");*/
document.getElementById('permitidas').style.display 'block';
document.getElementById('permitidas').innerHTML=extensiones;
}