这篇文章主要介绍了jquery拖拽排序简单实现方法,涉及jquery响应鼠标事件动态操作页面元素的相关技巧,需要的朋友可以参考下
本文实例讲述了jquery拖拽排序简单实现方法。分享给大家供大家参考,具体如下:
运行效果截图如下:
原来没有新建动作,分析代码后发现很容易增强~~
代码如下:
<!doctype html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>测试的拖拽功能</title>
<style type="text/css">
body, p { margin: 0; paading: 0; font-size: 12px; }
body { width:100%; margin: 0 auto; }
ul, li { margin: 0; padding: 0; list-style: none; }
.clear { clear: both; width: 1px; height: 0px; line-height: 0px; font-size: 1px; }
.drag_module_box { width: 600px; height: auto; margin: 25px 0 0 0; padding: 5px; border: 1px solid #f00; }
.drag_module_box1 { width: 600px; height: auto; margin: 25px 0 0 0; padding: 5px; border: 1px solid #f00; }
.drag_module_main { position: static; width: 600px; height: 80px; margin-bottom: 5px; border: 1px solid blue; background: #ccc; }
.drag_module_maindash { position: absolute; width: 600px; height: 80px; margin-bottom: 5px; border: 1px dashed blue; background: #ececec; opacity: 0.7; }
.drag_module_hide { width: 600px; height: 80px; margin-bottom: 5px; }
.drag_module_dash { position: sta;tic; width: 600px; height: 80px; margin-bottom: 5px; border: 1px dashed #f00; };
</style>
<script type="text/javascript" src="jquery-1.7.2.min.js"></script>
<script type="text/javascript">
$(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 thep = null, move = false;//拖拽对象 拖拽状态
var thepid =0, thepheight = 0, thephalf = 0; tarfirsty = 0; //拖拽对象的索引、高度、的初始化。
var tarp = null, tarfirst, tempp; //要插入的目标元素的对象, 临时的虚线对象
function loopbox(){ //循环初始化
$(.drag_module_box).find(.drag_module_main).each(function(){
console.log( 'find' );
$(this).mousedown(function (event){
//拖拽对象
thep = $(this);
//鼠标元素相对偏移量
range.x = event.pagex - thep.offset().left;
range.y = event.pagey - thep.offset().top;
thepid = thep.index();
thepheight = thep.height();
thephalf = thepheight/2;
move = true;
thep.attr(class,drag_module_maindash);
// 创建新元素 插入拖拽元素之前的位置(虚线框)
$(<p class='drag_module_dash'></p>).insertbefore(thep);
});
});
}
loopbox();
$(.drag_module_box).mousemove(function(event) {
console.log( 'mousemove' );
if (!move) return false;
lastpos.x = event.pagex - range.x;
lastpos.y = event.pagey - range.y;
lastpos.y1 = lastpos.y + thepheight;
// 拖拽元素随鼠标移动
thep.css({left: lastpos.x + 'px',top: lastpos.y + 'px'});
// 拖拽元素随鼠标移动 查找插入目标元素
var $main = $('.drag_module_main'); // 局部变量:按照重新排列过的顺序 再次获取 各个元素的坐标,
tempp = $(.drag_module_dash); //获得临时 虚线框的对象
$main.each(function () {
tarp = $(this);
tarpos.x = tarp.offset().left;
tarpos.y = tarp.offset().top;
tarpos.y1 = tarpos.y + tarp.height()/2;
tarfirst = $main.eq(0); // 获得第一个元素
tarfirsty = tarfirst.offset().top + thephalf ; // 第一个元素对象的中心纵坐标
//拖拽对象 移动到第一个位置
if (lastpos.y <= tarfirsty) {
tempp.insertbefore(tarfirst);
}
//判断要插入目标元素的 坐标后, 直接插入
if (lastpos.y >= tarpos.y - thephalf && lastpos.y1 >= tarpos.y1 ) {
tempp.insertafter(tarp);
}
});
}).mouseup(function(event) {
console.log( 'mouseup' );
if(thep==null) return false;
thep.insertbefore(tempp); // 拖拽元素插入到 虚线p的位置上
thep.attr(class, drag_module_main); //恢复对象的初始样式
$('.drag_module_dash').remove(); // 删除新建的虚线p
move=false;
});
$(#drag_module_insert).click(function(){
$(#drag_module_box1).html($(#drag_module_box1).html()+$(#drag_module_box2).html());
loopbox();
});
$(#drag_module_seque).click(function(){
$(.drag_module_box).find(.drag_module_main).each(function(){
console.log($(this).attr('id'));
});
});
});
</script>
</head>
<body>
<p class="drag_module_box" id="drag_module_box1">
<p class="drag_module_main" id="main1">p1</p>
<p class="drag_module_main" id="main2">p2</p>
<p class="drag_module_main" id="main3">p3</p>
<p class="drag_module_main" id="main4">p4</p>
<p class="drag_module_main" id="main5">p5</p>
<p class="drag_module_main" id="main6">p6</p>
</p>
<p class="drag_module_box1" id="drag_module_box2">
<p class="drag_module_main" id="main_first">p7</p>
</p>
<input type="button" value="新建" id="drag_module_insert"/>
<input type="button" value="确定" id="drag_module_seque"/>
</body>
</html>
相信看了本文案例你已经掌握了方法,更多精彩请关注其它相关文章!
推荐阅读:
js获取父窗口与子窗口的iframe案例详解
jquery获取父窗口与子窗口的iframe案例详解
jquery如何计算iframe窗口宽高
以上就是jquery操作多功能表格的详细内容。