我有两个可拖动的图像,一个男人和一个女人。当我将该人拖到两个div之一中时,我想隐藏那里的图像并显示一个新的特定图像。当我将女人拖到同一个div中时,我想隐藏现有图像并显示单独的不同图像。
以上示例有两个单独的div。将两个可拖动图像分成两个单独的div。传入的图像将确定隐藏的内容和显示的内容。到目前为止,我的代码如下。没用我知道&&不合适。
$('#drag-woman').draggable({helper:'clone'});
$('#drag-man').draggable({helper:'clone'}); // makes top images draggable
$("#drop-area-contain").droppable({ //makes contents in div droppable
drop: function(e, ui) {
if((ui.draggable.attr("id")) == 'drag-woman') && (class == "quid-contain"){ //if id is dragged do this
$('.quid-empty').hide();
$('.quid-with-woman').show();
}else if((ui.draggable.attr("id")) == 'drag-woman') && (class == "hostile-contain"){ // else if dragged do this
$('.hostile-empty').hide();
$('.hostile-with-woman').show();
}else if((ui.draggable.attr("id")) == 'drag-man') && (class == "quid-contain"){ // else if dragged do this
$('.quid-empty').hide();
$('.quid-with-man').show();
}else if((ui.draggable.attr("id")) == 'drag-man') && (class == "hostile-contain"){ // else if dragged do this
$('.hostile-empty').hide();
$('.hostile-with-man').show();
}
}
});
答案 0 :(得分:1)
修复了JSFiddle中的语法错误。如果这样可以解决问题,您可以接受我的回答。如果没有,那么请您提供更多信息:
$('#drag-woman').draggable({helper:'clone'});
$('#drag-man').draggable({helper:'clone'}); // makes top images draggable
$("#drop-area-contain").droppable({ //makes contents in div droppable
drop: function(e, ui) {
if(((ui.draggable.attr("id")) == 'drag-woman') && ($(this).hasClass("quid-contain"))){ //if id is dragged do this
$('.quid-empty').hide();
$('.quid-with-woman').show();
}else if(((ui.draggable.attr("id")) == 'drag-woman') && ($(this).hasClass("hostile-contain"))){ // else if dragged do this
$('.hostile-empty').hide();
$('.hostile-with-woman').show();
}else if(((ui.draggable.attr("id")) == 'drag-man') && ($(this).hasClass("quid-contain"))){ // else if dragged do this
$('.quid-empty').hide();
$('.quid-with-man').show();
}else if(((ui.draggable.attr("id")) == 'drag-man') && ($(this).hasClass("hostile-contain"))){ // else if dragged do this
$('.hostile-empty').hide();
$('.hostile-with-man').show();
}
}
});
https://jsfiddle.net/svz0bax5/
编辑
我为if
和else if
部分的条件添加了一个括号。另外,不是比较不存在的class
变量.hasClass()
,而是调用它。
EDIT2
简化的if-else:
$('#drag-woman').draggable({helper:'clone'});
$('#drag-man').draggable({helper:'clone'}); // makes top images draggable
$("#drop-area-contain").droppable({ //makes contents in div droppable
drop: function(e, ui) {
var idArray = ["drag-woman", "drag-man"];
if((idArray.indexOf(ui.draggable.attr("id")) + 1) && $(this).hasClass("quid-contain")) { //if id is dragged do this
$('.quid-empty').hide();
$('.quid-with-' + this.id.substring(5)).show();
}else if ((idArray.indexOf(ui.draggable.attr("id")) + 1) && $(this).hasClass("hostile-contain")){ // else if dragged do this
$('.hostile-empty').hide();
$('.hostile-with-' + this.id.substring(5)).show();
}
}
});
EDIT3
在新的小提琴中:https://jsfiddle.net/1btx6rfp/
我们可以看到解决方案:
$('#drag-woman').draggable({helper:'clone'});
$('#drag-man').draggable({helper:'clone'}); // makes top images draggable
$(".quid-contain, .hostile-contain").droppable({ //makes contents in div droppable
drop: function(e, ui) {
var idArray = ["drag-woman", "drag-man"];$('#drag-woman').draggable({helper:'clone'});
$('#drag-man').draggable({helper:'clone'}); // makes top images draggable
if((idArray.indexOf(ui.draggable.attr("id")) + 1) && $(this).hasClass("quid-contain")) { //if id is dragged do this
$('.quid-with-' + ui.draggable.attr("id").substring(5)).show().siblings().hide();
}else if ((idArray.indexOf(ui.draggable.attr("id")) + 1) && $(this).hasClass("hostile-contain")){ // else if dragged do this
$('.hostile-with-' + ui.draggable.attr("id").substring(5)).show().siblings().hide();
}
}
});
我们简化了if和drop事件的处理方式。