コンテナ内で移動可能な画像を作成しようとしています。ここから jQuery プラグインを使用しています: http://threedubmedia.com/。クリックしたときにコンテナ内にオブジェクトが表示されるようにしたいのですが、コンテナ外でオブジェクト (.item) のクラスを変更するのに問題があります。前もって感謝します!私がばかげた間違いをした場合は申し訳ありませんが、私はJavaScriptを学んでいます。
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js" ></script>
<script src="./js/jquery.event.drag-2.2.js" ></script>
<script src="./js/jquery.event.drag.live-2.2.js" ></script>
<script type="text/javascript">
jQuery(function($){
var $div = $('#container');
$('.drag')
.drag("start",function( ev, dd ){
dd.limit = $div.offset();
dd.limit.bottom = dd.limit.top + $div.outerHeight() - $( this ).outerHeight();
dd.limit.right = dd.limit.left + $div.outerWidth() - $( this ).outerWidth();
})
.drag(function( ev, dd ){
$( this ).css({
top: Math.min( dd.limit.bottom, Math.max( dd.limit.top, dd.offsetY ) ),
left: Math.min( dd.limit.right, Math.max( dd.limit.left, dd.offsetX ) )
});
});
});
</script>
<div id="container"></div>
<div class="drag" style="left:40px;"></div>
<div class="drag" style="left:120px;"></div>
<div class="drag" style="left:200px;"></div>
<div class="item"></div>
<style type="text/css">
.drag {
position: absolute;
border: 1px solid #89B;
background: #BCE;
height: 58px;
width: 58px;
cursor: move;
top: 120px;
}
#container {
height: 299px;
border: 1px dashed #888;
}
.item {
height: 58px;
width: 58px;
background: #000;
}
</style>
<script type="text/javascript">
function changeclass() {
$('.item').click(function(){
$(this).removeClass('item');
$(this).addClass('drag');
});
}
</script>