在 jQuery 中使用 imgAreaSelect 时无法清理旧数据“选择”
$('img#photo').imgAreaSelect({
handles: true,
onSelectEnd: someFunction
});
alert('x=' + selection.x1 + ' y=' + selection.y1 + ' x2=' + selection.x2 + ' y2=' + selection.y2)
在具有不同感兴趣区域选择的同一图像上多次运行上述代码。选择坐标不会清除旧值,并会在每组发布其显示警报窗口时。
请建议清除旧值的方法