success: function(msg){
alert(msg);
}
Ne alarma çıkar. I dosyasında ajax çağrı bir var varsa ama benim için mümkün:
$filename = time() . "10";
başarı kullanmak için?
Yani ben yapabilirim
success: function(msg){
alert($filename);
}
(Şimdi düzeltmek değil) ama bu nasıl yapabilirim?
$.ajax({
type: "POST",
url:"functions.php?action=crop",
data: {x: $('#x').val(),y: $('#y').val(),w: $('#w').val(),h: $('#h').val(),fname:$('#fname').val(),fixed:fixed,size:size},
success: function(msg){
if(!fixed)
$("#crop_preview").css({overflow:"auto"})
$("#crop_preview").html($(document.createElement("img")).attr("src", msg.filename)).show();
$("#crop_preview").after("Here is your Cropped Image :)").show();
$("#image").slideUp();
}
});
Ve php:
$time = time().".jpg";
echo '(';
echo json_encode(array(
'filename'=>$time
));
echo ')';