<script>
$(document).ready(function(e) {
$(function(){
$("#a").draggable();
$("#a").resizable();
});
});
</script>
<style>
img{border:solid 1px #000; width:512px; height:512px;}
</style>
<img id="a" src="images/1.png" />
我有一个图像使用jquery resizable&amp;拖动。
如果我同时使用两者,它就无法使用。
答案 0 :(得分:0)
使用喜欢
$('.draggable').draggable();
$('.resizable').resizable({
aspectRatio: true,
handles: 'ne, se, sw, nw'
});
$('.resizable').parent().rotatable();