有人能否了解为什么以下最简单的测试在IE上与Chrome和FF相比有不同的行为?
具体来说,在IE上,红色" Drop Here"当黄色框落在上面时,框会移动。
(奇怪的是,当我要求IE模仿IE 7时,这个片段似乎按预期工作,但奇怪的行为出现在IE 8,9和10上)
http://jsfiddle.net/zuilserip/8w47sc39/
有什么想法?获得一致行为的任何变通方法?
<!DOCTYPE html>
<html>
<head>
<style>
.DropBox {
float: left;
width: 75%;
line-height: 70px;
text-align: center;
background-color: yellow;
}
.TargetBox {
margin-left: 80%;
width: 20%;
line-height: 70px;
text-align: center;
background-color: red;
}
</style>
<script>
$(function () {
$(".DropBox").draggable({revert: "invalid" });
$(".TargetBox").droppable({
drop: function (event, ui){
$(ui.helper).hide("highlight",2000);}
});
});
</script>
</head>
<body>
<div class="DropBox">Drop Me</div>
<div class="TargetBox">Drop Here</div>
</body>
</html>
答案 0 :(得分:0)
我在IE11中在JsFiddle中执行了您的代码,并且正如预期的那样它无效。 Dropbox不可拖动。
我继续在JsFiddle做了一些改变。幸运的是,我能够在IE11和Firefox中使用它:
http://jsfiddle.net/8w47sc39/4/
$(function () {
$(".DropBox").draggable({
revert: false
});
$(".TargetBox").droppable({
drop: function (event, ui) {
$(ui.helper).hide("highlight", 2000);
}
});
});
以下是更改摘要:
这些资源基本上是JQuery站点中可拖动示例的引用: