$.ajax({
type:"GET",
url:"<?php echo Yii::app()->request->baseUrl; ?>/admin/"+urlPage+"?t=ajax&img="+$("#image_name").val()+"&w="+
thumb_width+"&h="+thumb_height+"&x1="+x_axis+"&y1="+y_axis,
cache:false,
success:function(rsponse)
{
$("#cropimage1").hide();
$("#thumbs1").html("");
if(th_size == '1'){
$("#thumbs").html("<img src='<?php echo Yii::app()->request->baseUrl; ?>/upload/temporary/thumb/"+rsponse+"?version="+Math.ceil(Math.random()*100)*10+"' /><input type='button' class='save-btn' onclick='refresh();' name='save' value='<?php echo Yii::t(Yii::app()->session["translator"], "Save and continue");?>'>");
$('html, body').animate({ scrollTop: $('#thumbs').offset().top }, 'slow');
document.getElementById("small_image").value =rsponse;
//alert(document.getElementById("small_image").value)
}
}
这里是根据ajax调用的响应动态加载一个div id“thumbs”。在这个thumbs div中有一个图像和提交按钮..问题是提交按钮加载速度很快,但如果图像很重,加载需要时间。我怎样才能使提交按钮在图像后加载..任何帮助表示赞赏?