Ver Mensaje Individual
  #1 (permalink)  
Antiguo 08/04/2007, 19:25
Xotihcan
 
Fecha de Ingreso: agosto-2006
Mensajes: 29
Antigüedad: 18 años, 3 meses
Puntos: 0
Duda sobre framework

Estoy en un problema.
Tengo esta funcion, la cual seria para subir una imagen y para despues mostrarla en una etiqueta <img>
wrapper es el div que contiene el <img>
Código:
function testupload()
{
	$.ajaxUpload(
	{
		uploadform:document.f,url:root+'upload.php',secureuri:false,dataType:'json',success:function(msg)
		{
			if(!msg.success)
			{
				alert(msg.message);
				return
			}
			$('#im').css(
			{
				left:'0',top:'0'
			}
			).attr(
			{
				src:msg.image,width:msg.width,height:msg.height
			}
			).show();
			cx=cy=0;
			image_src=msg.image;
			image_width=actual_width=msg.width;
			image_height=actual_height=msg.height;
			image_size='actual';
			wh=image_width/image_height;
			$('#a1').attr('checked','1');
			$('#wrapper').css(
			{
				backgroundImage:''
			}
			);
			$.unblockUI();
			loading_flag=0
		}
	}
	)
}
Quisiera saber si alguno la vio alguna vez, y si sabe que tiene que devolver upload.php para que la funcion realize el upload.

Saludos