如何在设置https://github.com/trentrichardson/UberUploadCropper/blob/master/example-advanced/index.php中实时更改“aspectRatio”。
$(function() {
$.("#test1").click( function () {
$ratio = 1;
});
$.("#test2").click( function () {
$ratio = 2;
});
$('#UploadImages').uberuploadcropper({
...
'aspectRatio': $ratio,
它不起作用。为什么?如何正确制作?