我正在使用最新版本的 jquery.jcrop。在图像上调用 jcrop() 时,裁剪工作但不会调用回调。这使得无法设置 jcrop_api 以供以后使用。具体来说,我希望能够更改图像并需要 destroy() 方法。
function setJCrop() {
//Set image for cropping
jQuery('#preview').Jcrop( {
minSize : [126, 126],
setSelect : [ 0, 0, 126, 126 ],
//onChange: updateMeasurements,
onSelect: updateMeasurements,
aspectRatio: 1
}, function() {
jcrop_api = this; //callback not being called
} );
}
当切换到 jQuery 就绪函数的调用时,这种情况开始发生:
jQuery(document).ready(function($) {