模仿igoogle拖动
需积分: 0 144 浏览量
更新于2011-01-21
收藏 52KB RAR 举报
$(function() {
if (!$.cookie("list")) {
$.cookie("list", "c1:3@1@2|c2:4|c3:5")//设置默认排序
}
var list = $.cookie("list"); //获取cookie里的list值
//alert(list)
var arrColumn = list.split('|');
$.each(arrColumn, function(m, n) {
var elemId = n.split(':')[0]; //容器ID
//debugger;
var arrRow = n.split(':')[1] ? n.split(':')[1].split('@') : ""; //单个序列ID
//debugger;
$.each(arrRow, function(m, n) {
if (n) {//排除空值
$("#" + elemId).append($("#sb" + n).attr('id', n))//把序列填加进容器
}
});
})
////////调用排序组件. stop 为移动停止时事件。connectWith是跨列排序。
$(".column").sortable({
connectWith: '.column',
stop: saveLayout
});
/* $(".portlet").addClass("ui-widget ui-widget-content ui-helper-clearfix ui-corner-all")
.find(".portlet-header")
.addClass("ui-widget-header ui-corner-all")
.prepend('<span class="ui-icon ui-icon-plusthick"> - </span>')
.end()
.find(".portlet-content");
$(".portlet-header .ui-icon").click(function() {
//$(this).toggleClass("ui-icon-minusthick");
$('.ui-icon-plusthick').toggle(function() { $(this).html(" + ") }, function() { $(this).html(" - "); });
$(this).parents(".portlet:first").find(".portlet-content").toggle();
});*/
//$(".column").disableSelection();
///把顺序拼接保存到cookie里.
function saveLayout() {
//alert()
var list = "";
$.each($(".column"), function(m) {
//alert($(this).attr('id'))
list += $(this).attr('id') + ":";
$.each($(this).children(".portlet"), function(d) {
//alert($(this).attr('id'))
list += $(this).attr('id') + "@";
})
list += "|";
//alert($(this).child(".portlet")[0].attributes['id'].value)
//alert($(this)[0].attributes['id'].value)
})
$.cookie("list", list)
//alert($.cookie("list"))
}
//每一列模块的值,其实sortable这个函数里有一个serialize可以直接取到对应的序列值:格式如下:
// $('#left').sortable('serialize',{key:'leftmod[]'}) + '&' + $('#right').sortable('serialize',{key:'rightmod[]'})
//我这里就没有用这个东西
})
luo516344002
- 粉丝: 12
- 资源: 5
最新资源
- 【全年行事历】5团建医药箱常备药清单.docx
- 【全年行事历】4团建活动物料清单.xlsx
- 【全年行事历】7团建活动策划书.docx
- 【全年行事历】ZOL团建活动策划方案.pptx
- 【全年行事历】XXX团建活动计划.pptx
- 【全年行事历】86团建活动培训PPT完.pptx
- 【全年行事历】公司年度活动计划.xls
- 【全年行事历】大型企业公司活动进度表.xlsx
- 【全年行事历】公司户外团建活动方案-某公司.pptx
- 【全年行事历】公司团建费用统计表.xlsx
- 【全年行事历】公司团建拓展行程方案-模版.docx
- 【全年行事历】公司全年团建活动方案.xls
- 【全年行事历】公司员工一年度关怀方案预算.xls
- 【全年行事历】公司团建活动项目介绍.pptx
- 【全年行事历】行政部年度活动策划及经费预算.xlsx
- 【全年行事历】行政全年活动筹备规划.xlsx