自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(0)
  • 资源 (5)
  • 收藏
  • 关注

空空如也

文件搜索内容

该工具提供文件里面的内容搜索功能,适合一般用户需求。

2015-06-12

js实现甘特图显示

目前很多公司都需要甘特图显示数据的情况,比如:工作计划管理、工程进度的管理等等都需要图形的显示目前的进度;甘特图插件可以帮助你实现这样的功能。

2013-08-15

office2007转pdf源码

可以快速将word\Excel转化pdf

2013-08-15

模仿igoogle拖动

$(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[]'}) //我这里就没有用这个东西 })

2011-01-21

AjaxControl例子!

Ajax控件的使用说明:在前台调用后台的代码! <script runat="server" type="text/C#"> protected void Calendar1_SelectionChanged(object sender, EventArgs e) { PopupControlExtender1.Commit(Calendar1.SelectedDate.ToShortDateString()); } </script>

2009-04-05

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除