Ver Mensaje Individual
  #3 (permalink)  
Antiguo 27/06/2006, 03:48
Avatar de Wdeah
Wdeah
 
Fecha de Ingreso: julio-2005
Ubicación: Argentina
Mensajes: 109
Antigüedad: 19 años, 5 meses
Puntos: 0
hola, me quede pensando sobre el tema... encontre la forma, pero solo funciona en IE

Código PHP:
<script type="text/javascript">
// idea basada en acceso mediante Password
// por tunait http://javascript.tunait.com
function verificar (imagen)
{
document.getElementById('img').onload = function ()
{
document.getElementById('div').innerHTML imagen ' Existe en la unidad C !';
}
document.getElementById('img').onerror = function ()
{
document.getElementById('div').innerHTML imagen ' No existe en la unidad C';
}
document.getElementById('img').src 'C:/' imagen
}
</script> 
Código HTML:
<input type="text" id="value" />
<img id="img" width="0" height="0" border="0" />
<input type="button" onclick="verificar (document.getElementById('value').value);" value="Verificar" />
<div id="div">Insertar nombre...</div> 
saludos