Cropit 如何在文件选择后调用或执行函数

Cropit How to call or execute a function after file selection

您好,我正在使用以下插件 CropIt,为了处理我网站上的图片,在文档中有一个名为 "onFileChange" 的选项,但文档本身并没有多大帮助,我需要在用户从对话框中选择图像后立即执行一个功能。

不知道该怎么做,因为图像总是在后台加载。

您需要将其设置为选项参数。示例:

$('#image-cropper').cropit(
    {
        onFileChange: function() {
            alert('Change test');
        }
    }
);