如果我使用 jqueryui 使一个元素可调整大小并且我在不使用 jqueryui 可调整大小的情况下更改此元素的大小,但例如通过 jquery.css('width'),则 jqueryui 可调整大小的句柄不会随元素移动。
HTML:
<img id="image" src="http://www.google.com.br/images/srpr/logo3w.png"/>
<input id="resizeImage" type="button" value="Resize Image" />
脚本:
var image = $('#image');
image.resizable();
$('#resizeImage').on('mouseup', function () {
image.css('width', parseInt(image.width() - 1, 10) + 'px');
});
知道如何解决这个问题吗?