这个可与前两个不同了,这个是拖拽到指定的区域内的特效。其实逻辑方式差不多,只不过不同的是 找到目标元素,用appendTo 的方法插入到目标元素。 具体的代码如下,有兴趣者可以试下。(由于是初学,做的简单,如果有其他的方法请给下指点,我定感激不尽哈。。。) 复制代码 代码如下: 测试的拖拽功能 <BR>body, div { margin: 0; paading: 0; font-size: 12px; } <BR>ul, li { margin: 0; padding: 0; list-style: none; } <BR>.clear { clear: both; width: 1px; height: 0px; line-height: 0px; font-size: 1px; } <BR>.bor2 { padding: 20px 0 0 0; } <BR>.box { position: static; float: left; width: 200px; height: 800px; margin: 0 auto; margin-top: 15px; } <BR>.bor { position: static; width: 100px; height: 100px; margin: 0 0 5px 0 ; border: 1px solid #ccc; background: #ececec; } <BR>.borp { position: absolute; width: 100px; height: 80px; margin: 10px; padding: 10px; border: 1px solid #ccc; background: #ececec; } <BR>.bg { float:left; width: 100px; height: 100px; margin: 8px 5px 0 auto; padding: 10px; border: 1px solid #ccc; } <BR>.text2 { width: 200px; } <BR>.bgColor { border: 1px dashed #f00; } <BR> <BR>$(document).ready(function() { <BR>var move = false; // 移动的初始化 <BR>var $bg = $(".bg"); <BR>var initDiv, tarDiv, tarDivHalf = 0, wHalf = 0; //拖拽对象 目标对象 <BR>var initPos = {x: 0, y: 0}, relPos = {x: 0, y: 0}, temPos = {x: 0, y: 0}; <BR>var dragPos = {x1: 0, x2: 0, y1: 0, y2: 0};// 拖拽对象的四个坐标 <BR>var tarDivPos = {x1: 0, y1: 0, x2: 0, y2: 0}; //目标对象的四个坐标 <BR>$(".bor").each(function() { <BR>$(this).mousedown(function(event) { <BR>borSub = $(this).index(); <BR>initDiv = $(".bor").eq(borSub); //拖拽对象 <BR>// 鼠标 与 目标元素的相对坐标 <BR>relPos.x = event.pageX - $(this).offset().left; <BR>relPos.y = event.pageY - $(this).offset().top; <BR>move = true; <BR>}); <BR>$(document).mousemove(function(event) { <BR>if (!move) { return false; } <BR>// 下列代码是 if(move)的 程序 <BR>initDiv.removeClass("bor").addClass("borp"); <BR>// 目标元素随鼠标移动的坐标 <BR>dragPos.x1 = event.pageX - relPos.x; <BR>dragPos.y1 = event.pageY - relPos.y; <BR>dragPos.x2 = dragPos.x1 + initDiv. innerWidth(); <BR>dragPos.y2 = dragPos.y1 + initDiv. innerHeight(); <BR>initDiv.css({ left: dragPos.x1 +'px', top: dragPos.y1 + 'px' }); <BR>$bg.each(function() { <BR>tarDiv = $(this); <BR>// 目标对象的坐标 <BR>tarDivPos.x1 = tarDiv.offset().left; <BR>tarDivPos.x2 = tarDivPos.x1 + tarDiv.width(); <BR>tarDivPos.y1 = tarDiv.offset().top; <BR>tarDivPos.y2 = tarDivPos.y1 + tarDiv.height(); <BR>tarDivHalf = tarDiv.height()/2; //临时变量,以便于在if判断中使用 <BR>wHalf = tarDiv.width()/2; <BR>if (dragPos.x2 >= tarDivPos.x1 + wHalf && dragPos.x2 <= tarDivPos.x2 + wHalf && dragPos.y2 >= tarDivPos.y1 + tarDivHalf && dragPos.y2 <= tarDivPos.y2 + tarDivHalf ) { <BR>if(tarDiv.children().length >0 ) {return false;}// 解决重叠元素 移动到一个目标元素 <BR>tarDiv.removeClass("bg").addClass("bg bgColor"); <BR>} else { <BR>tarDiv.removeClass("bgColor"); <BR>} <BR>}); <BR>}).mouseup (function(event) { <BR>initDiv.appendTo($(".bgColor"));// 利用 apppendTo 方法 使拖动元素对象添加到指定的区域。 <BR>initDiv.removeClass("borp").addClass("bor").removeAttr("style"); //恢复拖拽对象初始的样式 <BR>move = false; <BR>}); <BR>}); <BR>}); <BR> bor1 bor2 bor3