0

我正在使用imgAreaSelect插件让用户裁剪图像。我想防止用户在没有裁剪图像的情况下点击保存按钮。如果图像已被裁剪,我正在寻找 javascript 中的解决方案,而不是检查服务器端。

4

1 回答 1

0

从 imgAreaSelect API 中的示例:

$('img#photo').imgAreaSelect({
    onSelectEnd: function (img, selection) {
        alert('width: ' + selection.width + '; height: ' + selection.height);
    }
});

只需检查是否selection.widthselection.height> 0

于 2013-02-07T15:30:30.120 回答