我正在使用jcrop jquery插件,並在onload事件上觸發initJcropBox()
函數。圖像載入事件觸發圖像完全加載之前?
但在圖像完全加載之前觸發此功能。這是造成問題的原因。如顯示不正確的jcboxbox大小或根本不顯示jcropbox。
當我放置一條線,它工作正常。但不是解決方案。 setTimeout('initJcropBox()',2000);
如何在瀏覽器中完全加載/呈現圖像後觸發initJcropbox()
函數?
var api;
function initJcropBox(){
api = $.Jcrop('#cropbox',{
bgColor: 'black',
bgOpacity: .7,
onSelect: updateCoords,
onChange: updateCoords,
boxWidth: 400
});
api.animateTo([0,0,$('#cropbox').width(),$('#cropbox').height()]);
}
function insertImage(name) {
var img = new Image();
img.onload = initJcropBox;
img.src = name;
img.id = 'cropbox';
return img;
}
$('td.imageFile').live('click', function(e){
fileWithPath = "uploads/original/" + $(this).text();
$('#cropbox').remove();
$("#cropcontainer").empty().html(insertImage(fileWithPath));
});
雖然它沒有工作,但點支持。 – Developer 2010-11-02 16:19:36