こんにちは、私はこのコードを持っています。各クローンがどの div に移動するかを検出しようとしています。
$(function() {
$('#draggableImages img').draggable( {
helper: "clone",
containment: '#dropbox',
cursor: 'move',
revert: 'invalid'
})
$("#Sunday").droppable({
drop: function(event, ui) {
if (ui.draggable[0].id) {
$(this).append($(ui.helper).clone().draggable());
}
}
});
.
.
.
$("#Saturday").droppable({
drop: function(event, ui) {
if (ui.draggable[0].id) {
$(this).append($(ui.helper).clone().draggable());
}
}
});
私のdivチェックが機能しません ここで私が試した方法です。これは、ボタンがクリックされたときにクローンを検出する必要があると私が信じている部分です
$( '#Checkdiv input[type=button]' ).click(function(){
if($("#Monday:has(camera)").length > 0){
alert("Camera");
}
else if($("#Monday:has(star)").length > 0){
alert("star");
}
else{
alert("no");
}
});
});