MingHao_Hu

博客园 首页 新随笔 联系 订阅 管理

2012年6月14日 #

摘要: 关键1根据源代码的改动自动下载代码,2编译3发布网站 1第一步只需要通过CruiseControl.NET就可以做到 2编译其实就是在ccnet.config中添加一个任务,关键代码[html]view plaincopy<tasks><msbuild><executable>C:\Windows\Microsoft.NET\Framework\v4.0.30319\Msbuild.exe</executable><workingDirectory>$(baseDirectory)$(workingDirectory)$(projec 阅读全文
posted @ 2012-06-14 17:53 MingHao_Hu 阅读(674) 评论(0) 推荐(0) 编辑

摘要: 在jquery中bing事件是append而不是replace绑定一次执行一次。当bind多次点击事件时点击一次会把以前把的多次多次都会触发所有有unbind想只触发当前bind的事件在bind的之前unbind之前bind的事件。事例:$("#moresmall").unbind('click'); $("#moresmall").unbind('click'); $("#moresmall").click(function () { SilderSetValue(-20); }); $(" 阅读全文
posted @ 2012-06-14 17:45 MingHao_Hu 阅读(253) 评论(0) 推荐(0) 编辑