汪和康

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

2014年4月24日

摘要: 1 //合并 2 dt.Merge(dt2);3 //去重 4 dt = dt.AsDataView().ToTable(true); 阅读全文
posted @ 2014-04-24 14:59 Supe 阅读(419) 评论(0) 推荐(0) 编辑

2013年12月27日

摘要: http://studiostyl.es/ 阅读全文
posted @ 2013-12-27 11:18 Supe 阅读(176) 评论(0) 推荐(0) 编辑

2013年11月11日

摘要: //随机排序 选取前5条数组.sort(function(){return Math.random()>0.5?-1:1;}) 阅读全文
posted @ 2013-11-11 16:48 Supe 阅读(428) 评论(0) 推荐(0) 编辑

2013年9月16日

摘要: ClientScript.RegisterClientScriptBlock 不执行页面中 form标签必须加入 runat=server 阅读全文
posted @ 2013-09-16 10:11 Supe 阅读(550) 评论(0) 推荐(0) 编辑

2013年9月4日

摘要: jquery 1.9checkbox 是否选中if($("#chk_selectedall").prop('checked'))checkbox 选中$("#chk_selectedall").prop('checked',true)checkbox 取消选中$("#chk_selectedall").prop('checked',false)checkbox 反选$("#chk_selectedall").click(function () { $("[i 阅读全文
posted @ 2013-09-04 16:38 Supe 阅读(440) 评论(0) 推荐(0) 编辑

2013年4月18日

摘要: 原文:https://developer.mozilla.org/en-US/docs/JavaScript/Guide/Closures老外写的很详细,有兴趣的可以看原文。(不得不佩服老外的逻辑思维能力)下面是老外说的一个稍微有趣的例子://在这个例子中,定义了一个函数makeAdder(x),它接收一个参数x和返回一个新函数。//返回新函数接受单个参数y,并返回x和y的总和。//在本质上,是一个函数makeAdder工厂//add5和add10都闭包。他们共享相同的函数体定义,但存储在不同的环境。在add5环境,x是5。至于add10而言,x是10。function makeAdder(x 阅读全文
posted @ 2013-04-18 17:03 Supe 阅读(243) 评论(0) 推荐(0) 编辑

2013年3月23日

摘要: 1,Html.Action 使用指定参数调用指定子操作方法并以 HTML 字符串形式返回结果。Html.Action() 1 <div id="HtmlAction"> 2 3 @Html.Action("ActionName"); 4 5 @Html.Action("ActionName", "ControlName"); 6 7 @{ 8 object a = null; 9 10 }11 @Html.Action("A... 阅读全文
posted @ 2013-03-23 18:45 Supe 阅读(2854) 评论(0) 推荐(0) 编辑

2013年3月14日

摘要: 第一种:objlist.ConvertAll(o => (MyClass)o)第二种: List<MyClass>mylist=newList<MyClass>(); mylist.AddRange(objlist.OfType<MyClass>()); 阅读全文
posted @ 2013-03-14 12:53 Supe 阅读(423) 评论(0) 推荐(1) 编辑

2013年2月4日

摘要: Math.pow(2,53) // => 9007199254740992: 2 的 53次幂 Math.round(.6) // => 1.0: 四舍五入 Math.ceil(.6) // => 1.0: 向上求整 Math.floor(.6) // => 0.0: 向下求整 Math.abs(-5) // => 5: 求绝对值 Math.max(x,y,z) // 返回最大值 Math.min(x,y,z) // 返回最小值 Math.random() // 生成一个大... 阅读全文
posted @ 2013-02-04 11:31 Supe 阅读(8876) 评论(0) 推荐(0) 编辑

摘要: <html xmlns="http://www.w3.org/1999/xhtml"><head runat="server"> <title>无标题页</title> <script type="text/javascript"> function thisTest(obj) { alert(obj.getAttribute('dept')); } function showguid(){ var a=document.getElementById(&quo 阅读全文
posted @ 2013-02-04 09:44 Supe 阅读(215) 评论(0) 推荐(0) 编辑