3 つの div があり、JQuery Sortable Plugin を使用しています。正常に動作していますが、問題は、最初の Div の右下隅に別の小さな div (黒色) を配置したことです。最初の div をどこにでもドラッグすると、小さな div も一緒にドラッグされます。 . これがコードです。
HTML
<!DOCTYPE html>
<html lang="eng">
<head>
<title>Drag 2 divs same time</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js" ></script>
<link rel="stylesheet" type="text/css" src="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" ></script>
<script src="http://code.jquery.com/jquery-1.9.1.js" ></script>
<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js" ></script>
<link rel="stylesheet" type="text/css" href="css.css">
</head>
<body>
<div id="wrapper">
<div id="div1" > Div 1</div>
<div id= "small"></div>
<div id="div2" > Div 2</div>
<div id="div3" > Div 3</div>
</div>
<script>
$('#wrapper').sortable({ cancel: "#small"});
$('#wrapper').disableSelection();
</script>
</body>
</html>
CSS
#div2{
width: 100px;
height: 100px;
background-color: red;
float: left;
margin-left: 5px;
}
#div1{
width: 100px;
height: 100px;
background-color: red;
float: left;
margin-left: 5px;
}
#div3{
width: 100px;
height: 100px;
background-color: red;
float: left;
margin-left: 5px;
}
#small{
width:25px;
height: 25px;
background-color: black;
position: absolute;
left: 88px;
top: 83px;
}