12345678div横向拖拽排序class="box"class="horizontal-div" id="div1"div1class="horizontal-div" id="div2"div2class="horizontal-div" id="div3"div3class="horizontal-div" id="div4"div4class="horizontal-div" id="div5"div5
12345678910111213141516171819202122232425262728293031323334353637body,div {padding:0px;margin:0px;}.box {margin-left:15px;padding:10px;padding-right:0px;width:810px;height:150px;border:blue solid 1px;}.horizontal-div {float:left;margin-right:10px;border:#000 solid 1px;text-align:center;width:150px;height:150px;}.horizontal-div-dash {position:absolute;width:150px;height:150px;margin-right:10px;border:1px dashed blue;background:#ececec;opacity:0.7;}.dash {float:left;width:150px;height:150px;margin-right:10px;border:1px dashed #f00;}
12345678910111213141516171819202122232425262728293031323334353637383940414243$(document).ready(function() {var range = {x: 0,y: 0}; //鼠标元素偏移量var lastPos = {x: 0,y: 0,x1: 0,y1: 0}; //拖拽对象的四个坐标var tarPos = {x: 0,y: 0,x1: 0,y1: 0}; //目标元素对象的坐标初始化var theDiv = null,move = false;choose = false; //拖拽对象 拖拽状态 选中状态var theDivId = 0,theDivHeight = 0,theDivHalf = 0;tarFirstY = 0; //拖拽对象的索引、高度、的初始化。var tarDiv = null,tarFirst, tempDiv; //要插入的目标元素的对象, 临时的虚线对象var initPos = {x: 0,y: 0};$(".horizontal-div").each(function() {$(this).mousedown(function(event) {choose = true;//拖拽对象theDiv = $(this);//记录拖拽元素初始位置initPos.x = theDiv.offset().left;initPos.y = theDiv.offset().top;//鼠标元素相对偏移量range.x = event.pageX - theDiv.offset().left;range.y = event.pageY - theDiv.offset().top;theDivId = theDiv.index();theDivWidth = theDiv.width();