如何让 JCrop 在取消选择时重置选择?

How to get JCrop to reset selection on deselect?

我正在使用 JCrop 进行图像裁剪。它工作正常并正确更新隐藏字段。

我遇到的问题是,当用户单击图像以清除选择时,选择区域会正确消失,但隐藏字段不会重置回 0。相反,它们保持在相同的位置纵坐标为先前的选择。

我目前正在使用:onSelect: updateCoords

function updateCoords(c) {
    $('#x1').val(c.x);
    $('#y1').val(c.y);
    $('#width').val(c.w);
    $('#height').val(c.h);
};

但是取消选择时不会调用它。

在说明书上找到的,应该先查一下! onRelease: resetCoords

function resetCoords() {
    $('#x1').val("0");
    $('#y1').val("0");
    $('#width').val("0");
    $('#height').val("0");
};