我想知道为什么我的 resizable() jQuery UI 函数在我的 img 上不起作用。 http://impress-builder.herokuapp.com/home
这是代码:https ://github.com/lipenco/impress.js-app
function setResizable(){
$( ".resizable" ).resizable();
}
$(document).on('click', 'img', function(event){
$(this).addClass('resizable');
$(this).css("position" ,"absolute")
setResizable();
return false;
});