私はスタックオーバーフローの新参者です。あなたの助けが必要です。オンラインからjquery resize widgetを入手し、ソースを実装しようとしました。1つのウィジェットだけで問題なく動作します。同じページ内の複数のウィジェットに同じサイズ変更機能を配置すると、ウィジェットのサイズ変更中に重なってしまいます。そして、最後のウィジェットのサイズを変更したときのもう1つの情報は、他のウィジェットに影響を与えません(重複しません)。
私のコードCSS
<style>
.widget1
{
width:150px; min-height:120px; border:1px solid green;
}
.widget2
{
width:150px; min-height:120px; border:1px solid blue;
}
.widget3
{
width:150px; min-height:120px; border:1px solid black;
}
</style>
使用されるJS
<link rel="stylesheet" href="http://code.jquery.com/ui/1.9.2/themes/base/jquery-ui.css" />
<script src="http://code.jquery.com/jquery-1.8.3.js"></script>
<script src="http://code.jquery.com/ui/1.9.2/jquery-ui.js"></script>
<script>
$(function() {
$(".drag_resize").draggable().resizable();
});
</script>
HTML
<div class="widget1 drag_resize">
Dummy contents 1
</div>
<div class="widget2 drag_resize">
Dummy contents 2
</div>
<div class="widget3 drag_resize">
Dummy contents 3
</div>