我正在使用imgAreaSelect插件让用户裁剪图片。我想防止用户在没有裁剪图像的情况下点击保存按钮。我正在寻找javascript中的解决,而不是检查服务器端,如果图像已被裁剪。
答案 0 :(得分:0)
来自imgAreaSelect API中的示例:
$('img#photo').imgAreaSelect({
onSelectEnd: function (img, selection) {
alert('width: ' + selection.width + '; height: ' + selection.height);
}
});
只需检查selection.width
和selection.height
是> 0